public enum SoccerTimeType extends java.lang.Enum<SoccerTimeType> implements TimeType
| Enum Constant and Description |
|---|
FT
odd applicable for full time result
|
HT
odd applicable for half time result
|
| Modifier and Type | Method and Description |
|---|---|
SportType |
sportType() |
static SoccerTimeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SoccerTimeType[] |
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 SoccerTimeType FT
public static final SoccerTimeType HT
public static SoccerTimeType[] values()
for (SoccerTimeType c : SoccerTimeType.values()) System.out.println(c);
public static SoccerTimeType 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