Enum SKU.SKUTier
- java.lang.Object
-
- java.lang.Enum<SKU.SKUTier>
-
- org.jclouds.azurecompute.arm.domain.vpn.SKU.SKUTier
-
- All Implemented Interfaces:
Serializable
,Comparable<SKU.SKUTier>
- Enclosing class:
- SKU
public static enum SKU.SKUTier extends Enum<SKU.SKUTier>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Basic
HighPerformance
Standard
UltraPerformance
Unrecognized
VpnGw1
VpnGw2
VpnGw3
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SKU.SKUTier
fromValue(String text)
static SKU.SKUTier
valueOf(String name)
Returns the enum constant of this type with the specified name.static SKU.SKUTier[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Basic
public static final SKU.SKUTier Basic
-
HighPerformance
public static final SKU.SKUTier HighPerformance
-
Standard
public static final SKU.SKUTier Standard
-
UltraPerformance
public static final SKU.SKUTier UltraPerformance
-
VpnGw1
public static final SKU.SKUTier VpnGw1
-
VpnGw2
public static final SKU.SKUTier VpnGw2
-
VpnGw3
public static final SKU.SKUTier VpnGw3
-
Unrecognized
public static final SKU.SKUTier Unrecognized
-
-
Method Detail
-
values
public static SKU.SKUTier[] 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 (SKU.SKUTier c : SKU.SKUTier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SKU.SKUTier 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
-
fromValue
public static SKU.SKUTier fromValue(String text)
-
-