public static enum GeneralName.Type extends java.lang.Enum<GeneralName.Type>
Enum Constant and Description |
---|
directoryName |
dNSName |
ediPartyName |
iPAddress |
otherName |
registeredID |
rfc822Name |
uniformResourceIdentifier |
x400Address |
Modifier and Type | Method and Description |
---|---|
static GeneralName.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeneralName.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeneralName.Type otherName
public static final GeneralName.Type rfc822Name
public static final GeneralName.Type dNSName
public static final GeneralName.Type x400Address
public static final GeneralName.Type directoryName
public static final GeneralName.Type ediPartyName
public static final GeneralName.Type uniformResourceIdentifier
public static final GeneralName.Type iPAddress
public static final GeneralName.Type registeredID
public static GeneralName.Type[] values()
for (GeneralName.Type c : GeneralName.Type.values()) System.out.println(c);
public static GeneralName.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null