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 SummaryEnum Constants Enum Constant Description BasicHighPerformanceStandardUltraPerformanceUnrecognizedVpnGw1VpnGw2VpnGw3
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SKU.SKUTierfromValue(String text)static SKU.SKUTiervalueOf(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- 
Basicpublic static final SKU.SKUTier Basic 
 - 
HighPerformancepublic static final SKU.SKUTier HighPerformance 
 - 
Standardpublic static final SKU.SKUTier Standard 
 - 
UltraPerformancepublic static final SKU.SKUTier UltraPerformance 
 - 
VpnGw1public static final SKU.SKUTier VpnGw1 
 - 
VpnGw2public static final SKU.SKUTier VpnGw2 
 - 
VpnGw3public static final SKU.SKUTier VpnGw3 
 - 
Unrecognizedpublic static final SKU.SKUTier Unrecognized 
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 - 
fromValuepublic static SKU.SKUTier fromValue(String text) 
 
- 
 
-