Package com.streamlayer.sports.events
Enum AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase
- java.lang.Object
-
- java.lang.Enum<AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase>
-
- com.streamlayer.sports.events.AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase>
- Enclosing class:
- AdminSummaryResponse.ResponseData.SummaryResponseAttributes
public static enum AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase extends java.lang.Enum<AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASEBALLBASKETBALLHOCKEYSOCCERSPORTS_NOT_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCaseforNumber(int value)intgetNumber()static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCasevalueOf(int value)Deprecated.static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCasevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASEBALL
public static final AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase BASEBALL
-
BASKETBALL
public static final AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase BASKETBALL
-
HOCKEY
public static final AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase HOCKEY
-
SOCCER
public static final AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase SOCCER
-
SPORTS_NOT_SET
public static final AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase SPORTS_NOT_SET
-
-
Method Detail
-
values
public static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase[] 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 (AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase c : AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase 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
-
valueOf
@Deprecated public static AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase 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 AdminSummaryResponse.ResponseData.SummaryResponseAttributes.SportsCase forNumber(int value)
-
getNumber
public int getNumber()
-
-