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