Package uicc.toolkit
Interface BERTLVViewHandler
-
- All Superinterfaces:
ViewHandler
- All Known Subinterfaces:
BERTLVEditHandler,EnvelopeHandler
public interface BERTLVViewHandler extends ViewHandler
The BERTLVViewHandler interface offers methods to retrieve information about TLVs stored in BER TLV list.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description shortgetSize()Returns the BER TLV size, this includes the tag and the length.bytegetTag()Returns the BER Tag of the BER TLV list-
Methods inherited from interface uicc.toolkit.ViewHandler
compareValue, copy, copyValue, findAndCompareValue, findAndCompareValue, findAndCopyValue, findAndCopyValue, findTLV, getCapacity, getLength, getValueByte, getValueLength, getValueShort
-
-
-
-
Method Detail
-
getTag
byte getTag()
Returns the BER Tag of the BER TLV list- Returns:
- the tag value
-
getSize
short getSize()
Returns the BER TLV size, this includes the tag and the length. The length of the TLV list can be retrieved with the ViewHandler.getLength() method.- Returns:
- the size of the BER TLV structure
-
-