Package com.oss.asn1
Class SetOfHugeDeferred<T extends AbstractData>
java.lang.Object
com.oss.asn1.AbstractData
com.oss.asn1.AbstractContainer
com.oss.asn1.SetOf<T>
com.oss.asn1.SetOfHugeDeferred<T>
- Type Parameters:
T
- type of the SET OF element value
- All Implemented Interfaces:
com.oss.asn1.Sizeable
,Serializable
,Cloneable
,Iterable<T>
The SetOfHugeDeferred class represents the ASN.1 SET OF type with a component
type that has --<ASN1.DeferDecoding>-- and --<ASN1.ValueInFile>-- directives.
- Since:
- ASN.1/Java 7.0
- See Also:
-
Field Summary
Fields inherited from class com.oss.asn1.AbstractData
EQUALS, GREATER_THAN, LESS_THAN
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Add an Element to this SET OF.Return SET OF as a collection of elements.void
Decode and set the decoded form of deferred component.void
Encode the decoded form of deferred component and set its encoded form.get
(int atIndex) Get an Element from this SET OF.getEncoded
(int atIndex) Return encoding of deferred component.void
Insert an Element into this SET OF at specified index.void
Remove an Element from this SET OF.void
Set (replace) an Element in the SET OF.Methods inherited from class com.oss.asn1.AbstractContainer
clone, delete, elements, getSize, remove, removeAllElements, size
Methods inherited from class com.oss.asn1.AbstractData
equals, getTypeInfo, isEncodable, isPDU, isValid, toString, toString
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
add
Add an Element to this SET OF.- Overrides:
add
in classSetOf<T extends AbstractData>
- Parameters:
element
- an element to add to this SET OF
-
set
Set (replace) an Element in the SET OF.- Overrides:
set
in classSetOf<T extends AbstractData>
- Parameters:
element
- new element to set.atIndex
- index of the replaced element.
-
get
Get an Element from this SET OF.- Overrides:
get
in classSetOf<T extends AbstractData>
- Parameters:
atIndex
- index of the element.- Returns:
- element specified by the index
-
insert
Insert an Element into this SET OF at specified index.- Overrides:
insert
in classSetOf<T extends AbstractData>
- Parameters:
element
- element to insert.atIndex
- index of inserted element.
-
remove
Remove an Element from this SET OF.- Overrides:
remove
in classSetOf<T extends AbstractData>
- Parameters:
element
- element to remove.
-
getEncoded
Return encoding of deferred component.- Parameters:
atIndex
- index of the element.- Returns:
- encoding of the element
-
decode
public void decode(Coder coder, int atIndex) throws DecodeNotSupportedException, DecodeFailedException Decode and set the decoded form of deferred component.- Parameters:
coder
- coder object.atIndex
- index of the element to decode.- Throws:
DecodeNotSupportedException
- if decoding is not supported for the specified element.DecodeFailedException
- if an error occurs while decoding.
-
encode
public void encode(Coder coder, int atIndex) throws EncodeNotSupportedException, EncodeFailedException Encode the decoded form of deferred component and set its encoded form.- Parameters:
coder
- coder object.atIndex
- index of the element to encode.- Throws:
EncodeNotSupportedException
- if encoding is not supported for the specified element.EncodeFailedException
- if an error occurs while encoding.
-
asCollection
Return SET OF as a collection of elements. The method is not supported and will throw UnsupportedOperationException.- Overrides:
asCollection
in classSetOf<T extends AbstractData>
- Returns:
- collection of elements.
-