Package com.streamlayer.sports.soccer
Enum SoccerMatchActivityType
- java.lang.Object
-
- java.lang.Enum<SoccerMatchActivityType>
-
- com.streamlayer.sports.soccer.SoccerMatchActivityType
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<SoccerMatchActivityType>
public enum SoccerMatchActivityType extends java.lang.Enum<SoccerMatchActivityType> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.sports.soccer.SoccerMatchActivityType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SOCCER_MATCH_ACTIVITY_FULL_TIMESOCCER_MATCH_ACTIVITY_FULL_TIME = 6;SOCCER_MATCH_ACTIVITY_GOALSOCCER_MATCH_ACTIVITY_GOAL = 1;SOCCER_MATCH_ACTIVITY_HALF_TIMESOCCER_MATCH_ACTIVITY_HALF_TIME = 5;SOCCER_MATCH_ACTIVITY_RED_CARDSOCCER_MATCH_ACTIVITY_RED_CARD = 3;SOCCER_MATCH_ACTIVITY_SUBSTITUTIONSOCCER_MATCH_ACTIVITY_SUBSTITUTION = 4;SOCCER_MATCH_ACTIVITY_UNSETSOCCER_MATCH_ACTIVITY_UNSET = 0;SOCCER_MATCH_ACTIVITY_YELLOW_CARDSOCCER_MATCH_ACTIVITY_YELLOW_CARD = 2;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intSOCCER_MATCH_ACTIVITY_FULL_TIME_VALUESOCCER_MATCH_ACTIVITY_FULL_TIME = 6;static intSOCCER_MATCH_ACTIVITY_GOAL_VALUESOCCER_MATCH_ACTIVITY_GOAL = 1;static intSOCCER_MATCH_ACTIVITY_HALF_TIME_VALUESOCCER_MATCH_ACTIVITY_HALF_TIME = 5;static intSOCCER_MATCH_ACTIVITY_RED_CARD_VALUESOCCER_MATCH_ACTIVITY_RED_CARD = 3;static intSOCCER_MATCH_ACTIVITY_SUBSTITUTION_VALUESOCCER_MATCH_ACTIVITY_SUBSTITUTION = 4;static intSOCCER_MATCH_ACTIVITY_UNSET_VALUESOCCER_MATCH_ACTIVITY_UNSET = 0;static intSOCCER_MATCH_ACTIVITY_YELLOW_CARD_VALUESOCCER_MATCH_ACTIVITY_YELLOW_CARD = 2;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SoccerMatchActivityTypeforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<SoccerMatchActivityType>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static SoccerMatchActivityTypevalueOf(int value)Deprecated.static SoccerMatchActivityTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SoccerMatchActivityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SOCCER_MATCH_ACTIVITY_UNSET
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_UNSET
SOCCER_MATCH_ACTIVITY_UNSET = 0;
-
SOCCER_MATCH_ACTIVITY_GOAL
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_GOAL
SOCCER_MATCH_ACTIVITY_GOAL = 1;
-
SOCCER_MATCH_ACTIVITY_YELLOW_CARD
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_YELLOW_CARD
SOCCER_MATCH_ACTIVITY_YELLOW_CARD = 2;
-
SOCCER_MATCH_ACTIVITY_RED_CARD
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_RED_CARD
SOCCER_MATCH_ACTIVITY_RED_CARD = 3;
-
SOCCER_MATCH_ACTIVITY_SUBSTITUTION
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_SUBSTITUTION
SOCCER_MATCH_ACTIVITY_SUBSTITUTION = 4;
-
SOCCER_MATCH_ACTIVITY_HALF_TIME
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_HALF_TIME
SOCCER_MATCH_ACTIVITY_HALF_TIME = 5;
-
SOCCER_MATCH_ACTIVITY_FULL_TIME
public static final SoccerMatchActivityType SOCCER_MATCH_ACTIVITY_FULL_TIME
SOCCER_MATCH_ACTIVITY_FULL_TIME = 6;
-
UNRECOGNIZED
public static final SoccerMatchActivityType UNRECOGNIZED
-
-
Field Detail
-
SOCCER_MATCH_ACTIVITY_UNSET_VALUE
public static final int SOCCER_MATCH_ACTIVITY_UNSET_VALUE
SOCCER_MATCH_ACTIVITY_UNSET = 0;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_GOAL_VALUE
public static final int SOCCER_MATCH_ACTIVITY_GOAL_VALUE
SOCCER_MATCH_ACTIVITY_GOAL = 1;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_YELLOW_CARD_VALUE
public static final int SOCCER_MATCH_ACTIVITY_YELLOW_CARD_VALUE
SOCCER_MATCH_ACTIVITY_YELLOW_CARD = 2;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_RED_CARD_VALUE
public static final int SOCCER_MATCH_ACTIVITY_RED_CARD_VALUE
SOCCER_MATCH_ACTIVITY_RED_CARD = 3;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_SUBSTITUTION_VALUE
public static final int SOCCER_MATCH_ACTIVITY_SUBSTITUTION_VALUE
SOCCER_MATCH_ACTIVITY_SUBSTITUTION = 4;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_HALF_TIME_VALUE
public static final int SOCCER_MATCH_ACTIVITY_HALF_TIME_VALUE
SOCCER_MATCH_ACTIVITY_HALF_TIME = 5;- See Also:
- Constant Field Values
-
SOCCER_MATCH_ACTIVITY_FULL_TIME_VALUE
public static final int SOCCER_MATCH_ACTIVITY_FULL_TIME_VALUE
SOCCER_MATCH_ACTIVITY_FULL_TIME = 6;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SoccerMatchActivityType[] 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 (SoccerMatchActivityType c : SoccerMatchActivityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SoccerMatchActivityType 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 SoccerMatchActivityType 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 SoccerMatchActivityType forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<SoccerMatchActivityType> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-