public enum BasketballEventType extends java.lang.Enum<BasketballEventType> implements EventType
| Enum Constant and Description |
|---|
AWAY_POINT
Total points that the away team score during the match
|
FIRST_TO_20
Work in progress
|
HOME_POINT
Total points that the home team score during the match
|
LAST_BASKET
Work in progress
|
NONE
Normal basketball match
|
TEAM_POINTS
Work in progress
|
THREE_POINTERS
Work in progress
|
| Modifier and Type | Method and Description |
|---|---|
SportType |
sportType() |
static BasketballEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasketballEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOfdeserialize, deserialize, fromName, name, serializepublic static final BasketballEventType NONE
public static final BasketballEventType FIRST_TO_20
public static final BasketballEventType LAST_BASKET
public static final BasketballEventType TEAM_POINTS
public static final BasketballEventType THREE_POINTERS
public static final BasketballEventType HOME_POINT
public static final BasketballEventType AWAY_POINT
public static BasketballEventType[] values()
for (BasketballEventType c : BasketballEventType.values()) System.out.println(c);
public static BasketballEventType 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