public static enum PermutationGenerator.TreatDuplicatesAs extends Enum<PermutationGenerator.TreatDuplicatesAs>
| Modifier and Type | Method and Description |
|---|---|
static PermutationGenerator.TreatDuplicatesAs |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PermutationGenerator.TreatDuplicatesAs[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PermutationGenerator.TreatDuplicatesAs DIFFERENT
public static final PermutationGenerator.TreatDuplicatesAs IDENTICAL
public static PermutationGenerator.TreatDuplicatesAs[] values()
for (PermutationGenerator.TreatDuplicatesAs c : PermutationGenerator.TreatDuplicatesAs.values()) System.out.println(c);
public static PermutationGenerator.TreatDuplicatesAs 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 nullCopyright © 2016–2018. All rights reserved.