public enum BasketballTimeType extends java.lang.Enum<BasketballTimeType> implements TimeType
Enum Constant and Description |
---|
FT
odd applicable for full time result
|
H1
odd applicable for first half result (exp: NCAA (men))
|
H2
odd applicable for second half result (exp: NCAA (men))
|
OT
odd applicable for over time result
|
Q1
odd applicable for first quarter time result
|
Q2
odd applicable for second quarter result
|
Q3
odd applicable for third quarter result
|
Q4
odd applicable for fourth quarter result
|
Modifier and Type | Method and Description |
---|---|
SportType |
sportType() |
static BasketballTimeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasketballTimeType[] |
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 BasketballTimeType FT
public static final BasketballTimeType H1
public static final BasketballTimeType H2
public static final BasketballTimeType Q1
public static final BasketballTimeType Q2
public static final BasketballTimeType Q3
public static final BasketballTimeType Q4
public static final BasketballTimeType OT
public static BasketballTimeType[] values()
for (BasketballTimeType c : BasketballTimeType.values()) System.out.println(c);
public static BasketballTimeType 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