Package org.xipki.ca.api.profile
Enum Certprofile.GeneralNameTag
- java.lang.Object
-
- java.lang.Enum<Certprofile.GeneralNameTag>
-
- org.xipki.ca.api.profile.Certprofile.GeneralNameTag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Certprofile.GeneralNameTag>
- Enclosing class:
- Certprofile
public static enum Certprofile.GeneralNameTag extends java.lang.Enum<Certprofile.GeneralNameTag>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description directoryNameDNSNameediPartyNameIPAddressotherNameregisteredIDrfc822NameuniformResourceIdentifierx400Adress
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetTag()static Certprofile.GeneralNameTagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Certprofile.GeneralNameTag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
otherName
public static final Certprofile.GeneralNameTag otherName
-
rfc822Name
public static final Certprofile.GeneralNameTag rfc822Name
-
DNSName
public static final Certprofile.GeneralNameTag DNSName
-
x400Adress
public static final Certprofile.GeneralNameTag x400Adress
-
directoryName
public static final Certprofile.GeneralNameTag directoryName
-
ediPartyName
public static final Certprofile.GeneralNameTag ediPartyName
-
uniformResourceIdentifier
public static final Certprofile.GeneralNameTag uniformResourceIdentifier
-
IPAddress
public static final Certprofile.GeneralNameTag IPAddress
-
registeredID
public static final Certprofile.GeneralNameTag registeredID
-
-
Method Detail
-
values
public static Certprofile.GeneralNameTag[] 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 (Certprofile.GeneralNameTag c : Certprofile.GeneralNameTag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Certprofile.GeneralNameTag valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getTag
public int getTag()
-
-