Uses of Interface
ch.panter.li.bi.asn.AsnTag

Packages that use AsnTag
ch.panter.li.bi.asn   
ch.panter.li.bi.asn.ber   
ch.panter.li.bi.asn.model   
ch.panter.li.bi.asn.value   
 

Uses of AsnTag in ch.panter.li.bi.asn
 

Classes in ch.panter.li.bi.asn that implement AsnTag
 class AsnTagImpl
           
 

Fields in ch.panter.li.bi.asn declared as AsnTag
static AsnTag AsnTags.BIT_STRING
           
static AsnTag AsnTags.BMPSTRING
           
static AsnTag AsnTags.BOOLEAN
           
static AsnTag AsnTags.CHARACTER_STRING
           
static AsnTag AsnTags.CHOICE_GENERIC_TAG
           
static AsnTag AsnTags.EMBEDDED_PDV
           
static AsnTag AsnTags.END_OF_INDEFINITE_LENGTH_CONTENT
           
static AsnTag AsnTags.ENUMERATED
           
static AsnTag AsnTags.EXTERNAL
           
static AsnTag AsnTags.GENERAL_STRING
           
static AsnTag AsnTags.GENERALIZED_TIME
           
static AsnTag AsnTags.GRAPHIC_STRING
           
static AsnTag AsnTags.IA5STRING
           
static AsnTag AsnTags.INTEGER
           
static AsnTag AsnTags.ISO646STRING
           
static AsnTag AsnTags.NULL
           
static AsnTag AsnTags.NUMERIC_STRING
           
static AsnTag AsnTags.OBJECT_DESCRIPTOR
           
static AsnTag AsnTags.OBJECT_IDENTIFIER
           
static AsnTag AsnTags.OCTET_STRING
           
static AsnTag AsnTags.PRINTABLE_STRING
           
static AsnTag AsnTags.REAL
           
static AsnTag AsnTags.RELATIVE_OID
           
static AsnTag AsnTags.SEQUENCE
           
static AsnTag AsnTags.SEQUENCE_OF
           
static AsnTag AsnTags.SET
           
static AsnTag AsnTags.SET_OF
           
static AsnTag AsnTags.T61STRING
           
static AsnTag AsnTags.TELETEX_STRING
           
static AsnTag AsnTags.UNIVERSAL_STRING
           
static AsnTag AsnTags.UNIVERSAL_TIME
           
static AsnTag AsnTags.UTCTIME
           
static AsnTag AsnTags.UTF8STRING
           
static AsnTag AsnTags.VIDEOTEX_STRING
           
static AsnTag AsnTags.VISIBLE_STRING
           
 

Methods in ch.panter.li.bi.asn that return AsnTag
 AsnTag AsnValueBase.getTag()
           
 AsnTag AsnValue.getTag()
           
 

Methods in ch.panter.li.bi.asn that return types with arguments of type AsnTag
 ReadOnlyStack<AsnTag> AsnDecodingContextInfo.getOpenTags()
           
 

Methods in ch.panter.li.bi.asn with parameters of type AsnTag
 AsnValueBase AsnValueFactoryBase.createValue(AsnDecodingContextInfo context, AsnTag tag)
           
 AsnValueBase AsnValueFactory.createValue(AsnDecodingContextInfo context, AsnTag tag)
           
protected  AsnValueBase AsnValueFactoryBase.createValueForTag(AsnDecodingContextInfo context, AsnTag tag)
           
 boolean AsnTagImpl.isSame(AsnTag other)
           
 boolean AsnTag.isSame(AsnTag other)
          Determines whether this instance is of the same tag class and has the same tag number as the other instance.
 void AsnValueBase.setTag(AsnTag tag)
           
 

Constructors in ch.panter.li.bi.asn with parameters of type AsnTag
AsnTagImpl(AsnTag copy)
           
 

Uses of AsnTag in ch.panter.li.bi.asn.ber
 

Methods in ch.panter.li.bi.asn.ber that return AsnTag
 AsnTag AsnBerNodeInfo.getTag()
           
 AsnTag AsnBerNodeInfoImpl.getTag()
           
 AsnTag AsnBerInputStream.readNextTag()
           
 

Methods in ch.panter.li.bi.asn.ber that return types with arguments of type AsnTag
 ReadOnlyStack<AsnTag> AsnBerDecodingContextImpl.getOpenTags()
           
 

Constructors in ch.panter.li.bi.asn.ber with parameters of type AsnTag
AsnBerNodeImpl(long offset, AsnTag tag, AsnBerTagLength length, long dataOffset, AsnValue value)
           
AsnBerNodeInfoImpl(long offset, AsnTag tag, AsnBerTagLength length, long dataOffset)
           
 

Uses of AsnTag in ch.panter.li.bi.asn.model
 

Methods in ch.panter.li.bi.asn.model that return AsnTag
 AsnTag AsnType.deriveApplicationTag(int tagNumber)
           
 AsnTag AsnTypeImpl.deriveApplicationTag(int tagNumber)
           
 AsnTag AsnType.deriveContextTag(int tagNumber)
           
 AsnTag AsnTypeImpl.deriveContextTag(int tagNumber)
           
 AsnTag AsnType.derivePrivateTag(int tagNumber)
           
 AsnTag AsnTypeImpl.derivePrivateTag(int tagNumber)
           
 AsnTag AsnType.deriveTag(AsnTagClass tagClass, int tagNumber)
           
 AsnTag AsnTypeImpl.deriveTag(AsnTagClass tagClass, int tagNumber)
           
 AsnTag AsnType.getTag()
           
 AsnTag AsnField.getTag()
           
 AsnTag AsnFieldImpl.getTag()
           
 AsnTag AsnTypeImpl.getTag()
           
 

Methods in ch.panter.li.bi.asn.model with parameters of type AsnTag
 void AsnType.checkCompatible(AsnTag tagToCheck)
          Determines the same check as isCompatible but throws in case of an incompatibility.
 void AsnTypeImpl.checkCompatible(AsnTag tagToCheck)
           
static AsnType AsnTypeImpl.createUnknownType(AsnTag tag, boolean simple)
           
 AsnField AsnType.getFieldByTag(AsnTag tag)
          Searches the fields of this instance for one with a tag matching the given tag.
 AsnField AsnTypeImpl.getFieldByTag(AsnTag tag)
           
 boolean AsnType.isCompatible(AsnTag tagToCheck)
          Determines whether this instances tag might represent a value for this type.
 boolean AsnTypeImpl.isCompatible(AsnTag tagToCheck)
           
 

Constructors in ch.panter.li.bi.asn.model with parameters of type AsnTag
AsnFieldImpl(String name, AsnTag tag, AsnType type)
           
AsnTypeImpl(AsnModuleImpl module, AsnType baseType, String name, AsnTag tag)
           
AsnTypeImpl(AsnModuleImpl module, AsnType baseType, String name, AsnTag tag, boolean uniqueTagsRequired)
           
AsnTypeImpl(boolean constructedEncodingAllowed, String name, AsnTag tag, AsnModule module, boolean simple)
           
AsnTypeImpl(boolean constructedEncodingAllowed, String name, AsnTag tag, boolean simple)
           
AsnTypeImpl(boolean constructedEncodingAllowed, String name, AsnTag tag, boolean simple, AsnConstraint... constraints)
           
 

Uses of AsnTag in ch.panter.li.bi.asn.value
 

Methods in ch.panter.li.bi.asn.value with parameters of type AsnTag
protected  AsnValue AsnContainerValueBase.ensureItemExists(AsnTag requiredTag, Class requiredClass, int insertPos)
           
 AsnValue AsnContainerValueBase.getItemByTag(AsnTag requiredTag)
           
 AsnValue AsnContainerValueBase.getItemByTagAndClass(AsnTag requiredTag, Class requiredClass)
           
protected  void AsnContainerValueBase.selectChoice(AsnTag requiredTag, Class requiredClass)
           
protected  void AsnContainerValueBase.setOptionalItemState(AsnTag requiredTag, Class requiredClass, int insertPos, boolean present)
           
 

Constructors in ch.panter.li.bi.asn.value with parameters of type AsnTag
AsnUnknownExtension(AsnTag tag)
           
AsnUnknownStructure(AsnTag tag)
           
 



Copyright 2007-2007 SourceForge. All Rights Reserved.