Uses of Class
jp.bitmeister.asn1.type.ASN1TagClass

Packages that use ASN1TagClass
jp.bitmeister.asn1.type Contains the common classes and interfaces used for defining ASN.1 types and processing ASN.1 data. 
jp.bitmeister.asn1.type.builtin Contains the classes which represents built-in ASN.1 types. 
jp.bitmeister.asn1.type.useful Contains the classes which represents useful ASN.1 types. 
 

Uses of ASN1TagClass in jp.bitmeister.asn1.type
 

Methods in jp.bitmeister.asn1.type that return ASN1TagClass
 ASN1TagClass UnknownType.tagClass()
          Returns tag class.
 ASN1TagClass ASN1TagValue.tagClass()
          Returns tag class of this tag.
static ASN1TagClass ASN1TagClass.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ASN1TagClass[] ASN1TagClass.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in jp.bitmeister.asn1.type with parameters of type ASN1TagClass
 NamedTypeSpecification SelectiveType.alternative(ASN1TagClass tagClass, int tagNumber)
          Returns the element specified by the ASN.1 tag class and number.
static ASN1Type ASN1ModuleManager.instantiate(java.lang.Class<? extends ASN1Module> module, ASN1TagClass tagClass, int tagNumber)
          Instantiates an ASN.1 data specified by the ASN.1 tag and the tag class.
 boolean TypeSpecification.matches(ASN1TagClass tagClass, int tagNumber)
          Tests if the tag class and the tag number matches this type.
 boolean SelectiveType.matches(ASN1TagClass tagClass, int tagNumber)
           
 boolean NamedTypeSpecification.matches(ASN1TagClass tagClass, int tagNumber)
          Tests if the ASN.1 tag matches this element.
 boolean ASN1Type.matches(ASN1TagClass tagClass, int tagNumber)
          Tests if the ASN.1 tag matches this ASN1 type.
 

Constructors in jp.bitmeister.asn1.type with parameters of type ASN1TagClass
SelectiveType(ASN1TagClass tagClass, int tagNumber, ASN1Type data)
          Instantiates a SelectiveType and initialize it with parameters.
UnknownType(ASN1TagClass tagClass, int tagNumber)
          Instantiate with a tag class and a tag number.
 

Uses of ASN1TagClass in jp.bitmeister.asn1.type.builtin
 

Methods in jp.bitmeister.asn1.type.builtin with parameters of type ASN1TagClass
 boolean ANY.matches(ASN1TagClass tagClass, int tagNumber)
           
 

Constructors in jp.bitmeister.asn1.type.builtin with parameters of type ASN1TagClass
CHOICE(ASN1TagClass tagClass, int tagNumber, ASN1Type data)
          Instantiates a CHOICE and initialize it with parameters.
 

Uses of ASN1TagClass in jp.bitmeister.asn1.type.useful
 

Constructors in jp.bitmeister.asn1.type.useful with parameters of type ASN1TagClass
EMBEDDED_PDV.Identification(ASN1TagClass tagClass, int tagNumber, ASN1Type data)
          Instantiates an Identification and initialize it with parameters.
EXTERNAL.Encoding(ASN1TagClass tagClass, int tagNumber, ASN1Type data)