java.lang.Object
java.lang.Enum<Operation>
ru.cg.webbpm.modules.database.bean.entity_graph.condition.Operation
All Implemented Interfaces:
Serializable, Comparable<Operation>, Constable

public enum Operation extends Enum<Operation>
Author:
Kochetkov
  • Enum Constant Details

    • EQUAL

      public static final Operation EQUAL
    • NOT_EQUAL

      public static final Operation NOT_EQUAL
    • GREATER_THAN

      public static final Operation GREATER_THAN
    • LESS_THAN

      public static final Operation LESS_THAN
    • GREATER_OR_EQUAL

      public static final Operation GREATER_OR_EQUAL
    • LESS_OR_EQUAL

      public static final Operation LESS_OR_EQUAL
    • IN

      public static final Operation IN
    • NOT_IN

      public static final Operation NOT_IN
    • IS_NULL

      public static final Operation IS_NULL
    • IS_NOT_NULL

      public static final Operation IS_NOT_NULL
    • LIKE

      public static final Operation LIKE
    • NOT_LIKE

      public static final Operation NOT_LIKE
  • Method Details

    • values

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

      public static Operation valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null