public static enum Version.ScalingCase extends java.lang.Enum<Version.ScalingCase> implements Internal.EnumLite
Enum Constant and Description |
---|
AUTOMATIC_SCALING |
BASIC_SCALING |
MANUAL_SCALING |
SCALING_NOT_SET |
Modifier and Type | Method and Description |
---|---|
static Version.ScalingCase |
forNumber(int value) |
int |
getNumber() |
static Version.ScalingCase |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static Version.ScalingCase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Version.ScalingCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.ScalingCase AUTOMATIC_SCALING
public static final Version.ScalingCase BASIC_SCALING
public static final Version.ScalingCase MANUAL_SCALING
public static final Version.ScalingCase SCALING_NOT_SET
public static Version.ScalingCase[] values()
for (Version.ScalingCase c : Version.ScalingCase.values()) System.out.println(c);
public static Version.ScalingCase valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null@Deprecated public static Version.ScalingCase valueOf(int value)
forNumber(int)
instead.public static Version.ScalingCase forNumber(int value)
public int getNumber()
getNumber
in interface Internal.EnumLite