Package org.xipki.ca.api.profile
Enum SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod
- java.lang.Object
-
- java.lang.Enum<SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod>
-
- org.xipki.ca.api.profile.SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod
-
- All Implemented Interfaces:
Serializable,Comparable<SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod>
- Enclosing class:
- SubjectKeyIdentifierControl
public static enum SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod extends Enum<SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SubjectKeyIdentifierControl.SubjectKeyIdentifierMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
METHOD_1
public static final SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod METHOD_1
-
METHOD_2
public static final SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod METHOD_2
-
-
Method Detail
-
values
public static SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod[] 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 (SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod c : SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SubjectKeyIdentifierControl.SubjectKeyIdentifierMethod 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
-
-