public enum CrossfoldMethod extends Enum<CrossfoldMethod>
| Enum Constant and Description |
|---|
PARTITION_RATINGS
Partition the ratings into (roughly) equal sets.
|
PARTITION_USERS
Partition the users into (roughly) equal sets.
|
SAMPLE_USERS
Sample users for each partition.
|
| Modifier and Type | Method and Description |
|---|---|
static CrossfoldMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossfoldMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossfoldMethod PARTITION_USERS
public static final CrossfoldMethod PARTITION_RATINGS
public static final CrossfoldMethod SAMPLE_USERS
public static CrossfoldMethod[] values()
for (CrossfoldMethod c : CrossfoldMethod.values()) System.out.println(c);
public static CrossfoldMethod 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 null