public static enum HyperSpaceSearchCriteria.Strategy extends java.lang.Enum<HyperSpaceSearchCriteria.Strategy>
Enum Constant and Description |
---|
Cartesian |
RandomDiscrete |
Unknown |
Modifier and Type | Method and Description |
---|---|
static HyperSpaceSearchCriteria.Strategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HyperSpaceSearchCriteria.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HyperSpaceSearchCriteria.Strategy Unknown
public static final HyperSpaceSearchCriteria.Strategy Cartesian
public static final HyperSpaceSearchCriteria.Strategy RandomDiscrete
public static HyperSpaceSearchCriteria.Strategy[] values()
for (HyperSpaceSearchCriteria.Strategy c : HyperSpaceSearchCriteria.Strategy.values()) System.out.println(c);
public static HyperSpaceSearchCriteria.Strategy 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