public static enum IterativeParameter.Mode extends java.lang.Enum<IterativeParameter.Mode>
| Enum Constant and Description |
|---|
ALL_VALUES
Try all values (until constraint is violated).
|
STOP_WHEN_MATCH
Once a match is found, stop returning more values.
|
STOP_WHEN_NOT_MATCH
Once a match is not found, stop returning more values.
|
| Modifier and Type | Method and Description |
|---|---|
static IterativeParameter.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IterativeParameter.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IterativeParameter.Mode ALL_VALUES
public static final IterativeParameter.Mode STOP_WHEN_MATCH
public static final IterativeParameter.Mode STOP_WHEN_NOT_MATCH
public static IterativeParameter.Mode[] values()
for (IterativeParameter.Mode c : IterativeParameter.Mode.values()) System.out.println(c);
public static IterativeParameter.Mode 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