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