|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ASN1Class>
pasn.misc.ASN1Class
public enum ASN1Class
Represents tagged ASN.1 objects classes
Enum Constant Summary | |
---|---|
APPLICATION
[APPLICATION X] tagging |
|
CONTEXT
[CONTEXT X] tagging |
|
PRIVATE
[PRIVATE X] tagging |
|
UNIVERSAL
Present only for completeness regarding ASN.1 specification. |
Method Summary | |
---|---|
int |
getValue()
|
static ASN1Class |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ASN1Class[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ASN1Class UNIVERSAL
Present only for completeness regarding ASN.1 specification. This constant is reserved to original ASN.1 objects and refers to ASN.1 types. Thus, it should not be used when tagging an ASN.1 object
public static final ASN1Class APPLICATION
[APPLICATION X] tagging
public static final ASN1Class CONTEXT
[CONTEXT X] tagging
public static final ASN1Class PRIVATE
[PRIVATE X] tagging
Method Detail |
---|
public static final ASN1Class[] values()
for(ASN1Class c : ASN1Class.values()) System.out.println(c);
public static ASN1Class 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 namepublic final int getValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |