|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FrequentItemSet.Type>
org.knime.base.node.mine.subgroupminer.freqitemset.FrequentItemSet.Type
public static enum FrequentItemSet.Type
The type of the frequent itemset. Either free, closed or maximal. Free sets have no other constraint then the minimum support. Closed itemsets have no superset with the same support and maximal itemsets have no frequent superset at all.
Enum Constant Summary | |
---|---|
CLOSED
closed. |
|
FREE
free. |
|
MAXIMAL
maximal. |
Method Summary | |
---|---|
static List<String> |
asStringList()
Returns the enum fields as a String list of their names. |
static FrequentItemSet.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FrequentItemSet.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FrequentItemSet.Type FREE
public static final FrequentItemSet.Type CLOSED
public static final FrequentItemSet.Type MAXIMAL
Method Detail |
---|
public static FrequentItemSet.Type[] values()
for (FrequentItemSet.Type c : FrequentItemSet.Type.values()) System.out.println(c);
public static FrequentItemSet.Type valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static List<String> asStringList()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |