All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class iaik.asn1.VisibleString

java.lang.Object
   |
   +----iaik.asn1.ASN1Object
           |
           +----iaik.asn1.VisibleString

public class VisibleString
extends ASN1Object
This class implements the native ASN.1 type "IA5String".


Constructor Index

 o VisibleString()
Create an empty VisibleString.
 o VisibleString(String)
Allocates a VisibleString object representing the value argument.

Method Index

 o decode(int, int, DerDecodeInputStream)
Decodes the next available data from the DerDecodeInputStream.
 o encode(DerEncodeOutputStream)
DER encodes this ASN1Object and write the result to the DerEncodeOutputStream.
 o getValue()
Returns the value of this VisibleString as a String.
 o init()
Initialize the object factory method.
 o setValue(Object)
Sets the value of this object to value.
 o toString()
Returns a string that represents the contents of this BitString.

Constructors

 o VisibleString
 protected VisibleString()
Create an empty VisibleString.

 o VisibleString
 public VisibleString(String value)
Allocates a VisibleString object representing the value argument.

Methods

 o init
 protected static void init()
Initialize the object factory method.

 o getValue
 public Object getValue()
Returns the value of this VisibleString as a String.

Overrides:
getValue in class ASN1Object
 o setValue
 public void setValue(Object object)
Sets the value of this object to value.

Overrides:
setValue in class ASN1Object
 o encode
 protected void encode(DerEncodeOutputStream os)
DER encodes this ASN1Object and write the result to the DerEncodeOutputStream.

Parameters:
os - the output stream to which to write the data
Overrides:
encode in class ASN1Object
 o decode
 protected void decode(int tag,
                       int length,
                       DerDecodeInputStream is) throws IOException
Decodes the next available data from the DerDecodeInputStream.

Parameters:
tag - the full tag of the current ASN1Object
length - the length of the ASN1Object which shall be decoded
Throws: IOException
if there is a problem with the DerDecodeInputStream
Overrides:
decode in class ASN1Object
 o toString
 public String toString()
Returns a string that represents the contents of this BitString.

Returns:
the string representation
Overrides:
toString in class ASN1Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index