public static enum AMPMatchResourceCondition.Value extends Enum<AMPMatchResourceCondition.Value>
Enum Constant and Description |
---|
any
Destination resource matches any value, effectively ignoring the intended resource.
|
exact
Destination resource exactly matches the intended resource.
|
other
Destination resource matches any value except for the intended resource.
|
Modifier and Type | Method and Description |
---|---|
static AMPMatchResourceCondition.Value |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AMPMatchResourceCondition.Value[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMPMatchResourceCondition.Value any
public static final AMPMatchResourceCondition.Value exact
public static final AMPMatchResourceCondition.Value other
public static AMPMatchResourceCondition.Value[] values()
for (AMPMatchResourceCondition.Value c : AMPMatchResourceCondition.Value.values()) System.out.println(c);
public static AMPMatchResourceCondition.Value 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