public enum FrequentItemSetType extends java.lang.Enum<FrequentItemSetType>
| Enum Constant and Description |
|---|
Four_Negative |
Half_Negative |
Half_Positive |
Negative |
One_All |
One_Half_Negative |
One_Half_Positive |
One_Negative |
One_Positive |
Positive |
Three_Negative |
| Modifier and Type | Method and Description |
|---|---|
static FrequentItemSetType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FrequentItemSetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FrequentItemSetType Positive
public static final FrequentItemSetType Negative
public static final FrequentItemSetType Half_Negative
public static final FrequentItemSetType Half_Positive
public static final FrequentItemSetType One_Half_Positive
public static final FrequentItemSetType One_Half_Negative
public static final FrequentItemSetType One_All
public static final FrequentItemSetType One_Positive
public static final FrequentItemSetType One_Negative
public static final FrequentItemSetType Three_Negative
public static final FrequentItemSetType Four_Negative
public static FrequentItemSetType[] values()
for (FrequentItemSetType c : FrequentItemSetType.values()) System.out.println(c);
public static FrequentItemSetType 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