public static enum Constants.Algorithm extends Enum<Constants.Algorithm>
| Enum Constant and Description |
|---|
fiveWise |
fourWise |
mixed |
pairWise |
sixWise |
threeWise |
| Modifier and Type | Method and Description |
|---|---|
static Constants.Algorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Algorithm pairWise
public static final Constants.Algorithm threeWise
public static final Constants.Algorithm fourWise
public static final Constants.Algorithm fiveWise
public static final Constants.Algorithm sixWise
public static final Constants.Algorithm mixed
public static Constants.Algorithm[] values()
for (Constants.Algorithm c : Constants.Algorithm.values()) System.out.println(c);
public static Constants.Algorithm 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 © 2020–2021. All rights reserved.