jp.bitmeister.asn1.type
Interface Concatenatable<T extends ASN1Type>

All Known Implementing Classes:
BIT_STRING, BMPString, GeneralizedTime, GeneralString, GraphicString, IA5String, NumericString, ObjectDescriptor, OCTET_STRING, PrintableString, StringType, TeletexString, TimeType, UniversalString, UTCTime, UTF8String, VideotexString, VisibleString

public interface Concatenatable<T extends ASN1Type>

The interface for classes which can be encoded to constructed form.

BIT_STRING and OCTET_STRING implements this interface and they shall be encoded either primitive or constructed form. The concatenate method is used for decoding values which were segmented in encoding process.

Author:
WATANABE, Jun.
See Also:
BIT_STRING, OCTET_STRING

Method Summary
 void concatenate(T data)
          Appends the value of the data to the value of this instance.
 

Method Detail

concatenate

void concatenate(T data)
Appends the value of the data to the value of this instance.

Parameters:
data - The data that has the value to be appended. The ASN.1 type of the data shall be same as this instance.


Copyright © 2012 BitMeister Inc. All Rights Reserved.