Package com.streamlayer.inplay.common
Enum SelectionResultStatus
- java.lang.Object
-
- java.lang.Enum<SelectionResultStatus>
-
- com.streamlayer.inplay.common.SelectionResultStatus
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,java.io.Serializable,java.lang.Comparable<SelectionResultStatus>
public enum SelectionResultStatus extends java.lang.Enum<SelectionResultStatus> implements com.google.protobuf.Internal.EnumLite
Protobuf enumstreamlayer.inplay.common.SelectionResultStatus
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SELECTION_RESULT_STATUS_LOSERSELECTION_RESULT_STATUS_LOSER = 3;SELECTION_RESULT_STATUS_NONESELECTION_RESULT_STATUS_NONE = 0;SELECTION_RESULT_STATUS_PARTIALSELECTION_RESULT_STATUS_PARTIAL = 5;SELECTION_RESULT_STATUS_PLACEDSELECTION_RESULT_STATUS_PLACED = 4;SELECTION_RESULT_STATUS_PUSHEDSELECTION_RESULT_STATUS_PUSHED = 2;SELECTION_RESULT_STATUS_WINNERSELECTION_RESULT_STATUS_WINNER = 1;UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intSELECTION_RESULT_STATUS_LOSER_VALUESELECTION_RESULT_STATUS_LOSER = 3;static intSELECTION_RESULT_STATUS_NONE_VALUESELECTION_RESULT_STATUS_NONE = 0;static intSELECTION_RESULT_STATUS_PARTIAL_VALUESELECTION_RESULT_STATUS_PARTIAL = 5;static intSELECTION_RESULT_STATUS_PLACED_VALUESELECTION_RESULT_STATUS_PLACED = 4;static intSELECTION_RESULT_STATUS_PUSHED_VALUESELECTION_RESULT_STATUS_PUSHED = 2;static intSELECTION_RESULT_STATUS_WINNER_VALUESELECTION_RESULT_STATUS_WINNER = 1;
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SelectionResultStatusforNumber(int value)intgetNumber()static com.google.protobuf.Internal.EnumLiteMap<SelectionResultStatus>internalGetValueMap()static com.google.protobuf.Internal.EnumVerifierinternalGetVerifier()static SelectionResultStatusvalueOf(int value)Deprecated.static SelectionResultStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SelectionResultStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SELECTION_RESULT_STATUS_NONE
public static final SelectionResultStatus SELECTION_RESULT_STATUS_NONE
SELECTION_RESULT_STATUS_NONE = 0;
-
SELECTION_RESULT_STATUS_WINNER
public static final SelectionResultStatus SELECTION_RESULT_STATUS_WINNER
SELECTION_RESULT_STATUS_WINNER = 1;
-
SELECTION_RESULT_STATUS_PUSHED
public static final SelectionResultStatus SELECTION_RESULT_STATUS_PUSHED
SELECTION_RESULT_STATUS_PUSHED = 2;
-
SELECTION_RESULT_STATUS_LOSER
public static final SelectionResultStatus SELECTION_RESULT_STATUS_LOSER
SELECTION_RESULT_STATUS_LOSER = 3;
-
SELECTION_RESULT_STATUS_PLACED
public static final SelectionResultStatus SELECTION_RESULT_STATUS_PLACED
SELECTION_RESULT_STATUS_PLACED = 4;
-
SELECTION_RESULT_STATUS_PARTIAL
public static final SelectionResultStatus SELECTION_RESULT_STATUS_PARTIAL
SELECTION_RESULT_STATUS_PARTIAL = 5;
-
UNRECOGNIZED
public static final SelectionResultStatus UNRECOGNIZED
-
-
Field Detail
-
SELECTION_RESULT_STATUS_NONE_VALUE
public static final int SELECTION_RESULT_STATUS_NONE_VALUE
SELECTION_RESULT_STATUS_NONE = 0;- See Also:
- Constant Field Values
-
SELECTION_RESULT_STATUS_WINNER_VALUE
public static final int SELECTION_RESULT_STATUS_WINNER_VALUE
SELECTION_RESULT_STATUS_WINNER = 1;- See Also:
- Constant Field Values
-
SELECTION_RESULT_STATUS_PUSHED_VALUE
public static final int SELECTION_RESULT_STATUS_PUSHED_VALUE
SELECTION_RESULT_STATUS_PUSHED = 2;- See Also:
- Constant Field Values
-
SELECTION_RESULT_STATUS_LOSER_VALUE
public static final int SELECTION_RESULT_STATUS_LOSER_VALUE
SELECTION_RESULT_STATUS_LOSER = 3;- See Also:
- Constant Field Values
-
SELECTION_RESULT_STATUS_PLACED_VALUE
public static final int SELECTION_RESULT_STATUS_PLACED_VALUE
SELECTION_RESULT_STATUS_PLACED = 4;- See Also:
- Constant Field Values
-
SELECTION_RESULT_STATUS_PARTIAL_VALUE
public static final int SELECTION_RESULT_STATUS_PARTIAL_VALUE
SELECTION_RESULT_STATUS_PARTIAL = 5;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static SelectionResultStatus[] 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 (SelectionResultStatus c : SelectionResultStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SelectionResultStatus 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 SelectionResultStatus 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 SelectionResultStatus forNumber(int value)
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<SelectionResultStatus> internalGetValueMap()
-
internalGetVerifier
public static com.google.protobuf.Internal.EnumVerifier internalGetVerifier()
-
-