Enum Class WhereType

java.lang.Object
java.lang.Enum<WhereType>
cool.scx.data.query.WhereType
All Implemented Interfaces:
Serializable, Comparable<WhereType>, Constable

public enum WhereType extends Enum<WhereType>
WhereType
Version:
0.0.1
Author:
scx567888
  • Enum Constant Details

    • EQUAL

      public static final WhereType EQUAL
    • NOT_EQUAL

      public static final WhereType NOT_EQUAL
    • LESS_THAN

      public static final WhereType LESS_THAN
    • LESS_THAN_OR_EQUAL

      public static final WhereType LESS_THAN_OR_EQUAL
    • GREATER_THAN

      public static final WhereType GREATER_THAN
    • GREATER_THAN_OR_EQUAL

      public static final WhereType GREATER_THAN_OR_EQUAL
    • IS_NULL

      public static final WhereType IS_NULL
    • IS_NOT_NULL

      public static final WhereType IS_NOT_NULL
    • LIKE

      public static final WhereType LIKE
    • NOT_LIKE

      public static final WhereType NOT_LIKE
    • LIKE_REGEX

      public static final WhereType LIKE_REGEX
    • NOT_LIKE_REGEX

      public static final WhereType NOT_LIKE_REGEX
    • IN

      public static final WhereType IN
    • NOT_IN

      public static final WhereType NOT_IN
    • BETWEEN

      public static final WhereType BETWEEN
    • NOT_BETWEEN

      public static final WhereType NOT_BETWEEN
    • JSON_CONTAINS

      public static final WhereType JSON_CONTAINS
    • JSON_OVERLAPS

      public static final WhereType JSON_OVERLAPS
  • Method Details

    • values

      public static WhereType[] 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 WhereType 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