Package com.amazonaws.services.ec2.model
Enum AllocationStrategy
- java.lang.Object
-
- java.lang.Enum<AllocationStrategy>
-
- com.amazonaws.services.ec2.model.AllocationStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<AllocationStrategy>
public enum AllocationStrategy extends Enum<AllocationStrategy>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Diversified
LowestPrice
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AllocationStrategy
fromValue(String value)
Use this in place of valueOf.String
toString()
static AllocationStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static AllocationStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LowestPrice
public static final AllocationStrategy LowestPrice
-
Diversified
public static final AllocationStrategy Diversified
-
-
Method Detail
-
values
public static AllocationStrategy[] 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 (AllocationStrategy c : AllocationStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AllocationStrategy valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<AllocationStrategy>
-
fromValue
public static AllocationStrategy fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- AllocationStrategy corresponding to the value
-
-