public enum SoccerEventType extends java.lang.Enum<SoccerEventType> implements EventType
Enum Constant and Description |
---|
BOOKING
Work in progress
|
NEXT_CORNER
Work in progress
|
NONE
Normal matches
|
TOTAL_CORNER
Work in progress
|
UNCATEGORIZED_SPECIAL
Matches other than normal matches are categorized as UNCATEGORIZED_SPECIAL currently
|
Modifier and Type | Method and Description |
---|---|
SportType |
sportType() |
static SoccerEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SoccerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
deserialize, deserialize, fromName, name, serialize
public static final SoccerEventType NONE
public static final SoccerEventType NEXT_CORNER
public static final SoccerEventType TOTAL_CORNER
public static final SoccerEventType BOOKING
public static final SoccerEventType UNCATEGORIZED_SPECIAL
public static SoccerEventType[] values()
for (SoccerEventType c : SoccerEventType.values()) System.out.println(c);
public static SoccerEventType 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