Enum IPSecEncryption
- java.lang.Object
-
- java.lang.Enum<IPSecEncryption>
-
- org.jclouds.azurecompute.arm.domain.vpn.IPSecEncryption
-
- All Implemented Interfaces:
Serializable
,Comparable<IPSecEncryption>
public enum IPSecEncryption extends Enum<IPSecEncryption>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IPSecEncryption
fromValue(String text)
static IPSecEncryption
valueOf(String name)
Returns the enum constant of this type with the specified name.static IPSecEncryption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AES128
public static final IPSecEncryption AES128
-
AES192
public static final IPSecEncryption AES192
-
AES256
public static final IPSecEncryption AES256
-
DES
public static final IPSecEncryption DES
-
DES3
public static final IPSecEncryption DES3
-
GCMAES128
public static final IPSecEncryption GCMAES128
-
GCMAES192
public static final IPSecEncryption GCMAES192
-
GCMAES256
public static final IPSecEncryption GCMAES256
-
None
public static final IPSecEncryption None
-
Unrecognized
public static final IPSecEncryption Unrecognized
-
-
Method Detail
-
values
public static IPSecEncryption[] 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 (IPSecEncryption c : IPSecEncryption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IPSecEncryption 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 IPSecEncryption fromValue(String text)
-
-