Package com.seleniumsoftware.SMPPSim.pdu
Class Tlv
- java.lang.Object
-
- com.seleniumsoftware.SMPPSim.pdu.Tlv
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
TlvEmpty
public class Tlv extends java.lang.Object implements java.io.Serializable- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description shortgetLen()shortgetTag()byte[]getValue()voidsetLen(short len)voidsetTag(short tag)voidsetValue(byte[] value)java.lang.StringtoString()
-
-
-
Method Detail
-
getLen
public short getLen()
- Returns:
- Returns the len.
-
setLen
public void setLen(short len)
- Parameters:
len- The len to set.
-
getTag
public short getTag()
- Returns:
- Returns the tag.
-
setTag
public void setTag(short tag)
- Parameters:
tag- The tag to set.
-
getValue
public byte[] getValue()
- Returns:
- Returns the value.
-
setValue
public void setValue(byte[] value)
- Parameters:
value- The value to set.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-