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