public enum TransitedEncodingType extends Enum<TransitedEncodingType>
Enum Constant and Description |
---|
DOMAIN_X500_COMPRESS
Constant for the "Domain X500 compress" transited encoding type.
|
NULL
Constant for the "null" transited encoding type.
|
Modifier and Type | Method and Description |
---|---|
int |
getOrdinal()
Returns the number associated with this transited encoding type.
|
static TransitedEncodingType |
getTypeByOrdinal(int type)
Returns the transited encoding type when specified by its ordinal.
|
String |
toString() |
static TransitedEncodingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransitedEncodingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransitedEncodingType NULL
public static final TransitedEncodingType DOMAIN_X500_COMPRESS
public static TransitedEncodingType[] values()
for (TransitedEncodingType c : TransitedEncodingType.values()) System.out.println(c);
public static TransitedEncodingType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static TransitedEncodingType getTypeByOrdinal(int type)
type
- public int getOrdinal()
public String toString()
toString
in class Enum<TransitedEncodingType>
Object.toString()
Copyright © 2003-2013 Apache Software Foundation. All Rights Reserved.