public enum SsmlCfOperator extends Enum<SsmlCfOperator>
Enum Constant and Description |
---|
beginsWith |
between |
containsText |
endsWith |
equal |
greaterThan |
greaterThanOrEqual |
lessThan |
lessThanOrEqual |
notBetween |
notContains |
notEqual |
Modifier and Type | Method and Description |
---|---|
static SsmlCfOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SsmlCfOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SsmlCfOperator lessThan
public static final SsmlCfOperator lessThanOrEqual
public static final SsmlCfOperator equal
public static final SsmlCfOperator notEqual
public static final SsmlCfOperator greaterThanOrEqual
public static final SsmlCfOperator greaterThan
public static final SsmlCfOperator between
public static final SsmlCfOperator notBetween
public static final SsmlCfOperator containsText
public static final SsmlCfOperator notContains
public static final SsmlCfOperator beginsWith
public static final SsmlCfOperator endsWith
public static SsmlCfOperator[] values()
for (SsmlCfOperator c : SsmlCfOperator.values()) System.out.println(c);
public static SsmlCfOperator 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 null