Enum EncodedExternal.ExternalEncoding
- java.lang.Object
-
- java.lang.Enum<EncodedExternal.ExternalEncoding>
-
- ExternalEncoding
-
- All Implemented Interfaces:
Serializable
,Comparable<EncodedExternal.ExternalEncoding>
- Enclosing class:
- EncodedExternal
public static enum EncodedExternal.ExternalEncoding extends Enum<EncodedExternal.ExternalEncoding>
Possible encoding forms.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description arbitrary
ericsson
octet_aligned
single_ASN1_type
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static EncodedExternal.ExternalEncoding
valueOf(String name)
Returns the enum constant of this type with the specified name.static EncodedExternal.ExternalEncoding[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
single_ASN1_type
public static final EncodedExternal.ExternalEncoding single_ASN1_type
-
octet_aligned
public static final EncodedExternal.ExternalEncoding octet_aligned
-
arbitrary
public static final EncodedExternal.ExternalEncoding arbitrary
-
ericsson
public static final EncodedExternal.ExternalEncoding ericsson
-
-
Method Detail
-
values
public static EncodedExternal.ExternalEncoding[] 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 (EncodedExternal.ExternalEncoding c : EncodedExternal.ExternalEncoding.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EncodedExternal.ExternalEncoding 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<EncodedExternal.ExternalEncoding>
-
-