|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<KDDCupItemType>
org.mymedialite.taxonomy.KDDCupItemType
public enum KDDCupItemType
Enumeration representing one of the 4 possible item types in the KDD Cup 2011 data.
Enum Constant Summary | |
---|---|
ALBUM
a music album. |
|
ARTIST
an artist/interpret. |
|
GENRE
a music genre. |
|
NONE
none of the above. |
|
TRACK
a track/song. |
Method Summary | |
---|---|
static KDDCupItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static KDDCupItemType[] |
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 KDDCupItemType TRACK
public static final KDDCupItemType ALBUM
public static final KDDCupItemType ARTIST
public static final KDDCupItemType GENRE
public static final KDDCupItemType NONE
Method Detail |
---|
public static KDDCupItemType[] values()
for (KDDCupItemType c : KDDCupItemType.values()) System.out.println(c);
public static KDDCupItemType 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |