Enum FilterRuleOperator

java.lang.Object
java.lang.Enum<FilterRuleOperator>
org.nuiton.topia.persistence.pager.FilterRuleOperator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FilterRuleOperator>, java.lang.constant.Constable

public enum FilterRuleOperator
extends java.lang.Enum<FilterRuleOperator>
Operator used in a rule.
Since:
2.6.14
Author:
tchemit <chemit@codelutin.com>
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
  • Enum Constant Summary

    Enum Constants 
    Enum Constant Description
    bn
    Not between with operator.
    bw
    Begins with operator.
    cn
    Contains operator.
    en
    Not End with operator.
    eq
    Equals operator.
    ew
    Ends with operator.
    ge
    Greater or equals operator.
    gt
    Greater than operator.
    in
    Is among operator.
    le
    Lesser or equals operator.
    lt
    Lesser than operator.
    nc
    Not contains operator.
    ne
    Not equals operator.
    ni
    Not is among operator.
    nn
    Is not null operator.
    nu
    Is null operator.
  • Method Summary

    Modifier and Type Method Description
    abstract java.lang.String toHql​(java.lang.String paramName, java.lang.String propertyName, java.lang.Object data, java.util.Map<java.lang.String,​java.lang.Object> filterParams)  
    static FilterRuleOperator valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static FilterRuleOperator[] values()
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

  • Method Details

    • values

      public static FilterRuleOperator[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static FilterRuleOperator valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
      java.lang.NullPointerException - if the argument is null
    • toHql

      public abstract java.lang.String toHql​(java.lang.String paramName, java.lang.String propertyName, java.lang.Object data, java.util.Map<java.lang.String,​java.lang.Object> filterParams)