public enum SDKStringMatchType extends java.lang.Enum<SDKStringMatchType>
Rule
sEnum Constant and Description |
---|
CONTAINS |
ENDSWITH |
EQUALS |
INLIST |
NOT_EMPTY |
REGEX |
STARTSWITH |
Modifier and Type | Method and Description |
---|---|
static SDKStringMatchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SDKStringMatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SDKStringMatchType STARTSWITH
public static final SDKStringMatchType ENDSWITH
public static final SDKStringMatchType CONTAINS
public static final SDKStringMatchType EQUALS
public static final SDKStringMatchType REGEX
public static final SDKStringMatchType INLIST
public static final SDKStringMatchType NOT_EMPTY
public static SDKStringMatchType[] values()
for (SDKStringMatchType c : SDKStringMatchType.values()) System.out.println(c);
public static SDKStringMatchType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null