public static enum StringCondition.Operator extends Enum<StringCondition.Operator>
| Enum Constant and Description |
|---|
CONTAINS |
ENDS_WITH |
EQUAL |
MATCH |
NOT_EQUAL |
STARTS_WITH |
| Modifier and Type | Method and Description |
|---|---|
static StringCondition.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringCondition.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringCondition.Operator EQUAL
public static final StringCondition.Operator NOT_EQUAL
public static final StringCondition.Operator STARTS_WITH
public static final StringCondition.Operator ENDS_WITH
public static final StringCondition.Operator CONTAINS
public static final StringCondition.Operator MATCH
public static StringCondition.Operator[] values()
for (StringCondition.Operator c : StringCondition.Operator.values()) System.out.println(c);
public static StringCondition.Operator 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 © 2015–2017 Red Hat, Inc.. All rights reserved.