Package org.italiangrid.voms.asn1
Enum VOMSACGenerator.ACGenerationProperties
- java.lang.Object
-
- java.lang.Enum<VOMSACGenerator.ACGenerationProperties>
-
- org.italiangrid.voms.asn1.VOMSACGenerator.ACGenerationProperties
-
- All Implemented Interfaces:
Serializable
,Comparable<VOMSACGenerator.ACGenerationProperties>
- Enclosing class:
- VOMSACGenerator
public static enum VOMSACGenerator.ACGenerationProperties extends Enum<VOMSACGenerator.ACGenerationProperties>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FAKE_SIGNATURE_BITS
INCLUDE_CRITICAL_AKID_EXTENSION
INCLUDE_CRITICAL_NO_REV_AVAIL_EXTENSION
INCLUDE_EMPTY_AC_CERTS_EXTENSION
INCLUDE_FAKE_CRITICAL_EXTENSION
SKIP_AC_CERTS_EXTENSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static VOMSACGenerator.ACGenerationProperties
valueOf(String name)
Returns the enum constant of this type with the specified name.static VOMSACGenerator.ACGenerationProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SKIP_AC_CERTS_EXTENSION
public static final VOMSACGenerator.ACGenerationProperties SKIP_AC_CERTS_EXTENSION
-
FAKE_SIGNATURE_BITS
public static final VOMSACGenerator.ACGenerationProperties FAKE_SIGNATURE_BITS
-
INCLUDE_FAKE_CRITICAL_EXTENSION
public static final VOMSACGenerator.ACGenerationProperties INCLUDE_FAKE_CRITICAL_EXTENSION
-
INCLUDE_CRITICAL_NO_REV_AVAIL_EXTENSION
public static final VOMSACGenerator.ACGenerationProperties INCLUDE_CRITICAL_NO_REV_AVAIL_EXTENSION
-
INCLUDE_CRITICAL_AKID_EXTENSION
public static final VOMSACGenerator.ACGenerationProperties INCLUDE_CRITICAL_AKID_EXTENSION
-
INCLUDE_EMPTY_AC_CERTS_EXTENSION
public static final VOMSACGenerator.ACGenerationProperties INCLUDE_EMPTY_AC_CERTS_EXTENSION
-
-
Method Detail
-
values
public static VOMSACGenerator.ACGenerationProperties[] 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 (VOMSACGenerator.ACGenerationProperties c : VOMSACGenerator.ACGenerationProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VOMSACGenerator.ACGenerationProperties 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
-
-