public static enum ValueConstraint.MODE extends Enum<ValueConstraint.MODE>
| Enum Constant and Description |
|---|
all
All parsed values must be present.
|
any
Any of the parsed values is sufficient to select an entity.
|
| Modifier and Type | Method and Description |
|---|---|
static ValueConstraint.MODE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueConstraint.MODE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueConstraint.MODE any
public static final ValueConstraint.MODE all
public static ValueConstraint.MODE[] values()
for (ValueConstraint.MODE c : ValueConstraint.MODE.values()) System.out.println(c);
public static ValueConstraint.MODE 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 © 2010-2014 The Apache Software Foundation. All Rights Reserved.