public static enum ExtendedApiVersion.Season extends Enum<ExtendedApiVersion.Season>
| Modifier and Type | Method and Description |
|---|---|
static ExtendedApiVersion.Season |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedApiVersion.Season[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedApiVersion.Season WINTER
public static final ExtendedApiVersion.Season SPRING
public static final ExtendedApiVersion.Season SUMMER
public static ExtendedApiVersion.Season[] values()
for (ExtendedApiVersion.Season c : ExtendedApiVersion.Season.values()) System.out.println(c);
public static ExtendedApiVersion.Season valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All rights reserved.