Module net.sf.jsqlparser
Enum RegExpMatchOperatorType
- java.lang.Object
-
- java.lang.Enum<RegExpMatchOperatorType>
-
- net.sf.jsqlparser.expression.operators.relational.RegExpMatchOperatorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RegExpMatchOperatorType>
public enum RegExpMatchOperatorType extends java.lang.Enum<RegExpMatchOperatorType>
PostgresSQL match operators.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MATCH_CASEINSENSITIVE
MATCH_CASESENSITIVE
NOT_MATCH_CASEINSENSITIVE
NOT_MATCH_CASESENSITIVE
-
Constructor Summary
Constructors Modifier Constructor Description private
RegExpMatchOperatorType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegExpMatchOperatorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RegExpMatchOperatorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MATCH_CASESENSITIVE
public static final RegExpMatchOperatorType MATCH_CASESENSITIVE
-
MATCH_CASEINSENSITIVE
public static final RegExpMatchOperatorType MATCH_CASEINSENSITIVE
-
NOT_MATCH_CASESENSITIVE
public static final RegExpMatchOperatorType NOT_MATCH_CASESENSITIVE
-
NOT_MATCH_CASEINSENSITIVE
public static final RegExpMatchOperatorType NOT_MATCH_CASEINSENSITIVE
-
-
Method Detail
-
values
public static RegExpMatchOperatorType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RegExpMatchOperatorType c : RegExpMatchOperatorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegExpMatchOperatorType 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 namejava.lang.NullPointerException
- if the argument is null
-
-