public enum RegExpMatchOperatorType extends Enum<RegExpMatchOperatorType>
| Enum Constant and Description |
|---|
MATCH_CASEINSENSITIVE |
MATCH_CASESENSITIVE |
NOT_MATCH_CASEINSENSITIVE |
NOT_MATCH_CASESENSITIVE |
| Modifier and Type | Method and Description |
|---|---|
static RegExpMatchOperatorType |
valueOf(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.
|
public static final RegExpMatchOperatorType MATCH_CASESENSITIVE
public static final RegExpMatchOperatorType MATCH_CASEINSENSITIVE
public static final RegExpMatchOperatorType NOT_MATCH_CASESENSITIVE
public static final RegExpMatchOperatorType NOT_MATCH_CASEINSENSITIVE
public static RegExpMatchOperatorType[] values()
for (RegExpMatchOperatorType c : RegExpMatchOperatorType.values()) System.out.println(c);
public static RegExpMatchOperatorType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2004–2024 JSQLParser. All rights reserved.