com.objsys.asn1j.runtime
Class Asn1CHARACTER_STRING_identification

java.lang.Object
  extended by com.objsys.asn1j.runtime.Asn1Type
      extended by com.objsys.asn1j.runtime.Asn1Choice
          extended by com.objsys.asn1j.runtime.Asn1CHARACTER_STRING_identification
All Implemented Interfaces:
Asn1TypeIF, java.io.Serializable, java.lang.Cloneable

public class Asn1CHARACTER_STRING_identification
extends Asn1Choice

See Also:
Serialized Form

Field Summary
static byte _CONTEXT_NEGOTIATION
           
static byte _FIXED
           
static byte _PRESENTATION_CONTEXT_ID
           
static byte _SYNTAX
           
static byte _SYNTAXES
           
static byte _TRANSFER_SYNTAX
           
static Asn1Tag TAG
           
 
Fields inherited from class com.objsys.asn1j.runtime.Asn1Choice
choiceID, element
 
Fields inherited from class com.objsys.asn1j.runtime.Asn1Type
BIT_STRING, BMPString, BOOLEAN, DATE, DATE_TIME, DURATION, ENUMERATED, EOC, EXTERNAL, GeneralString, GeneralTime, GraphicString, IA5String, INTEGER, NULL, NumericString, OBJECT_IDENTIFIER, ObjectDescriptor, OCTET_STRING, OID_IRI, OpenType, PrintableString, REAL, RELATIVE_OID_IRI, RelativeOID, SEQUENCE, SET, T61String, TeletexString, TIME, TIME_OF_DAY, UniversalString, UTCTime, UTF8String, VideotexString, VisibleString
 
Constructor Summary
Asn1CHARACTER_STRING_identification()
           
Asn1CHARACTER_STRING_identification(byte choiceId_, Asn1Type element_)
           
 
Method Summary
 void decode(Asn1BerDecodeBuffer buffer, boolean explicit, int implicitLength)
          This method is used to decode a message that is encoded in BER or DER format.
 void decode(Asn1PerDecodeBuffer buffer)
          This method is the base implementation of the standard Packed Encoding Rules (PER) decode method.
 int encode(Asn1BerEncodeBuffer buffer, boolean explicit)
          This method is used to encode this data type in BER or DER format.
 void encode(Asn1BerOutputStream out, boolean explicit)
          This method writes to the stream an encoded ASN.1 type value including the UNIVERSAL tag value and length if explicit tagging is specified.
 void encode(Asn1PerEncodeBuffer buffer)
          This method is the base implementation of the standard Packed Encoding Rules (PER) encode method.
 java.lang.String getElemName()
          This abstract method return the name of the selected element.
 void print(java.io.PrintStream _out, java.lang.String _varName, int _level)
          This method will format and output a primitive value to the given print stream.
 void set_context_negotiation(Asn1CHARACTER_STRING_identification_context_negotiation value)
           
 void set_fixed()
           
 void set_presentation_context_id(Asn1Integer value)
           
 void set_syntax(Asn1ObjectIdentifier value)
           
 void set_syntaxes(Asn1CHARACTER_STRING_identification_syntaxes value)
           
 void set_transfer_syntax(Asn1ObjectIdentifier value)
           
 
Methods inherited from class com.objsys.asn1j.runtime.Asn1Choice
equals, getChoiceID, getElement, hashCode, setElement
 
Methods inherited from class com.objsys.asn1j.runtime.Asn1Type
clone, decode, decode, decode, decode, decode, decodeXML, encode, encode, encode, encode, equals, getLength, getTypeName, indent, isOpenType, matchTag, matchTag, pdiag, setKey, setOpenType
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TAG

public static final Asn1Tag TAG

_SYNTAXES

public static final byte _SYNTAXES
See Also:
Constant Field Values

_SYNTAX

public static final byte _SYNTAX
See Also:
Constant Field Values

_PRESENTATION_CONTEXT_ID

public static final byte _PRESENTATION_CONTEXT_ID
See Also:
Constant Field Values

_CONTEXT_NEGOTIATION

public static final byte _CONTEXT_NEGOTIATION
See Also:
Constant Field Values

_TRANSFER_SYNTAX

public static final byte _TRANSFER_SYNTAX
See Also:
Constant Field Values

_FIXED

public static final byte _FIXED
See Also:
Constant Field Values
Constructor Detail

Asn1CHARACTER_STRING_identification

public Asn1CHARACTER_STRING_identification()

Asn1CHARACTER_STRING_identification

public Asn1CHARACTER_STRING_identification(byte choiceId_,
                                           Asn1Type element_)
Method Detail

getElemName

public java.lang.String getElemName()
Description copied from class: Asn1Choice
This abstract method return the name of the selected element. A concrete version is generated by the compiler.

Specified by:
getElemName in class Asn1Choice

set_syntaxes

public void set_syntaxes(Asn1CHARACTER_STRING_identification_syntaxes value)

set_syntax

public void set_syntax(Asn1ObjectIdentifier value)

set_presentation_context_id

public void set_presentation_context_id(Asn1Integer value)

set_context_negotiation

public void set_context_negotiation(Asn1CHARACTER_STRING_identification_context_negotiation value)

set_transfer_syntax

public void set_transfer_syntax(Asn1ObjectIdentifier value)

set_fixed

public void set_fixed()

decode

public void decode(Asn1BerDecodeBuffer buffer,
                   boolean explicit,
                   int implicitLength)
            throws Asn1Exception,
                   java.io.IOException
Description copied from class: Asn1Type
This method is used to decode a message that is encoded in BER or DER format.

Specified by:
decode in interface Asn1TypeIF
Overrides:
decode in class Asn1Type
Parameters:
buffer - Decode message buffer object
explicit - Flag indicating explicit tag should be parsed from the encoded type.
implicitLength - Length of the contents field (only required if explicit is false).
Throws:
Asn1Exception
java.io.IOException

encode

public int encode(Asn1BerEncodeBuffer buffer,
                  boolean explicit)
           throws Asn1Exception
Description copied from class: Asn1Type
This method is used to encode this data type in BER or DER format.

Specified by:
encode in interface Asn1TypeIF
Overrides:
encode in class Asn1Type
Parameters:
buffer - Encode message buffer object
explicit - Flag indicating explicit tag should be added to the encoded type.
Returns:
Decoded integer value
Throws:
Asn1Exception

encode

public void encode(Asn1BerOutputStream out,
                   boolean explicit)
            throws Asn1Exception,
                   java.io.IOException
Description copied from class: Asn1Type
This method writes to the stream an encoded ASN.1 type value including the UNIVERSAL tag value and length if explicit tagging is specified. This overloaded version uses the Basic Encoding Rules (BER).

Specified by:
encode in interface Asn1TypeIF
Overrides:
encode in class Asn1Type
Parameters:
out - BER Output Stream object
explicit - Flag indicating explicit tagging should be done
Throws:
Asn1Exception - Thrown, if operation is failed.
java.io.IOException - Any exception thrown by the underlying OutputStream.

decode

public void decode(Asn1PerDecodeBuffer buffer)
            throws Asn1Exception,
                   java.io.IOException
Description copied from class: Asn1Type
This method is the base implementation of the standard Packed Encoding Rules (PER) decode method. It throws an exception because it should never be invoked by compiler generated code.

Specified by:
decode in interface Asn1TypeIF
Overrides:
decode in class Asn1Type
Parameters:
buffer - PER Encode message buffer object
Throws:
Asn1Exception
java.io.IOException

encode

public void encode(Asn1PerEncodeBuffer buffer)
            throws Asn1Exception,
                   java.io.IOException
Description copied from class: Asn1Type
This method is the base implementation of the standard Packed Encoding Rules (PER) encode method. It throws an exception because it should never be invoked by compiler generated code.

Specified by:
encode in interface Asn1TypeIF
Overrides:
encode in class Asn1Type
Parameters:
buffer - PER Encode message buffer object
Throws:
Asn1Exception
java.io.IOException

print

public void print(java.io.PrintStream _out,
                  java.lang.String _varName,
                  int _level)
Description copied from class: Asn1Type
This method will format and output a primitive value to the given print stream.

Specified by:
print in interface Asn1TypeIF
Overrides:
print in class Asn1Type
Parameters:
_out - Print output stream
_varName - Name of variable
_level - Indentation level