Package com.streamlayer.sports.common
Enum EventStatus
- java.lang.Object
-
- java.lang.Enum<EventStatus>
-
- com.streamlayer.sports.common.EventStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<EventStatus>
public enum EventStatus extends java.lang.Enum<EventStatus> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.sports.EventStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVENT_STATUS_ACTIVEEVENT_STATUS_ACTIVE = 2;EVENT_STATUS_BREAKEVENT_STATUS_BREAK = 3;EVENT_STATUS_CANCELLEDEVENT_STATUS_CANCELLED = 7;EVENT_STATUS_OVERTIMEEVENT_STATUS_OVERTIME = 4;EVENT_STATUS_POSTGAMEEVENT_STATUS_POSTGAME = 6;EVENT_STATUS_PREGAMEEVENT_STATUS_PREGAME = 1;EVENT_STATUS_SHOOTOUTSEVENT_STATUS_SHOOTOUTS = 5;EVENT_STATUS_UNSETEVENT_STATUS_UNSET = 0;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intEVENT_STATUS_ACTIVE_VALUEEVENT_STATUS_ACTIVE = 2;static intEVENT_STATUS_BREAK_VALUEEVENT_STATUS_BREAK = 3;static intEVENT_STATUS_CANCELLED_VALUEEVENT_STATUS_CANCELLED = 7;static intEVENT_STATUS_OVERTIME_VALUEEVENT_STATUS_OVERTIME = 4;static intEVENT_STATUS_POSTGAME_VALUEEVENT_STATUS_POSTGAME = 6;static intEVENT_STATUS_PREGAME_VALUEEVENT_STATUS_PREGAME = 1;static intEVENT_STATUS_SHOOTOUTS_VALUEEVENT_STATUS_SHOOTOUTS = 5;static intEVENT_STATUS_UNSET_VALUEEVENT_STATUS_UNSET = 0;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static EventStatusforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<EventStatus>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static EventStatusvalueOf(int value)Deprecated.static EventStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EventStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EVENT_STATUS_UNSET
public static final EventStatus EVENT_STATUS_UNSET
EVENT_STATUS_UNSET = 0;
-
EVENT_STATUS_PREGAME
public static final EventStatus EVENT_STATUS_PREGAME
EVENT_STATUS_PREGAME = 1;
-
EVENT_STATUS_ACTIVE
public static final EventStatus EVENT_STATUS_ACTIVE
EVENT_STATUS_ACTIVE = 2;
-
EVENT_STATUS_BREAK
public static final EventStatus EVENT_STATUS_BREAK
EVENT_STATUS_BREAK = 3;
-
EVENT_STATUS_OVERTIME
public static final EventStatus EVENT_STATUS_OVERTIME
EVENT_STATUS_OVERTIME = 4;
-
EVENT_STATUS_SHOOTOUTS
public static final EventStatus EVENT_STATUS_SHOOTOUTS
EVENT_STATUS_SHOOTOUTS = 5;
-
EVENT_STATUS_POSTGAME
public static final EventStatus EVENT_STATUS_POSTGAME
EVENT_STATUS_POSTGAME = 6;
-
EVENT_STATUS_CANCELLED
public static final EventStatus EVENT_STATUS_CANCELLED
EVENT_STATUS_CANCELLED = 7;
-
UNRECOGNIZED
public static final EventStatus UNRECOGNIZED
-
-
Field Detail
-
EVENT_STATUS_UNSET_VALUE
public static final int EVENT_STATUS_UNSET_VALUE
EVENT_STATUS_UNSET = 0;- See Also:
- Constant Field Values
-
EVENT_STATUS_PREGAME_VALUE
public static final int EVENT_STATUS_PREGAME_VALUE
EVENT_STATUS_PREGAME = 1;- See Also:
- Constant Field Values
-
EVENT_STATUS_ACTIVE_VALUE
public static final int EVENT_STATUS_ACTIVE_VALUE
EVENT_STATUS_ACTIVE = 2;- See Also:
- Constant Field Values
-
EVENT_STATUS_BREAK_VALUE
public static final int EVENT_STATUS_BREAK_VALUE
EVENT_STATUS_BREAK = 3;- See Also:
- Constant Field Values
-
EVENT_STATUS_OVERTIME_VALUE
public static final int EVENT_STATUS_OVERTIME_VALUE
EVENT_STATUS_OVERTIME = 4;- See Also:
- Constant Field Values
-
EVENT_STATUS_SHOOTOUTS_VALUE
public static final int EVENT_STATUS_SHOOTOUTS_VALUE
EVENT_STATUS_SHOOTOUTS = 5;- See Also:
- Constant Field Values
-
EVENT_STATUS_POSTGAME_VALUE
public static final int EVENT_STATUS_POSTGAME_VALUE
EVENT_STATUS_POSTGAME = 6;- See Also:
- Constant Field Values
-
EVENT_STATUS_CANCELLED_VALUE
public static final int EVENT_STATUS_CANCELLED_VALUE
EVENT_STATUS_CANCELLED = 7;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static EventStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EventStatus c : EventStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite
-
valueOf
@Deprecated public static EventStatus valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
forNumber
public static EventStatus forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<EventStatus> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-