public enum FillReducing extends java.lang.Enum<FillReducing>
Enum Constant and Description |
---|
IDENTITY
TESTING ONLY.
|
NONE
No fill reduction permutation will be applied
|
RANDOM
TESTING ONLY.
|
Modifier and Type | Method and Description |
---|---|
static FillReducing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FillReducing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FillReducing NONE
public static final FillReducing RANDOM
public static final FillReducing IDENTITY
public static FillReducing[] values()
for (FillReducing c : FillReducing.values()) System.out.println(c);
public static FillReducing 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