public static enum CombinatorialSubstitutionGenerator.EnumerationType extends java.lang.Enum<CombinatorialSubstitutionGenerator.EnumerationType>
Enum Constant and Description |
---|
ALL_POSSIBLE
All permutations, with replacement
|
COMBINATIONS
All combinations, without replacement
|
PERMUTATIONS
All permutations, without replacement
|
Modifier and Type | Method and Description |
---|---|
static CombinatorialSubstitutionGenerator.EnumerationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CombinatorialSubstitutionGenerator.EnumerationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CombinatorialSubstitutionGenerator.EnumerationType ALL_POSSIBLE
public static final CombinatorialSubstitutionGenerator.EnumerationType PERMUTATIONS
public static final CombinatorialSubstitutionGenerator.EnumerationType COMBINATIONS
public static CombinatorialSubstitutionGenerator.EnumerationType[] values()
for (CombinatorialSubstitutionGenerator.EnumerationType c : CombinatorialSubstitutionGenerator.EnumerationType.values()) System.out.println(c);
public static CombinatorialSubstitutionGenerator.EnumerationType 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