| java.lang.Object snmp.SNMPObject snmp.SNMPNull
SNMPNull | public class SNMPNull extends SNMPObject (Code) | | Object representing the SNMP Null data type.
|
Field Summary | |
protected byte | tag |
Method Summary | |
public boolean | equals(Object other) Checks just that both are instances of SNMPNull (no embedded value to check). | protected byte[] | getBEREncoding() Return BER encoding for a null object: two bytes, tag and length of 0. | public Object | getValue() Returns Java null reference. | public void | setValue(Object o) | public String | toString() Returns String "Null".. |
equals | public boolean equals(Object other)(Code) | | Checks just that both are instances of SNMPNull (no embedded value to check).
|
getBEREncoding | protected byte[] getBEREncoding()(Code) | | Return BER encoding for a null object: two bytes, tag and length of 0.
|
getValue | public Object getValue()(Code) | | Returns Java null reference.
|
toString | public String toString()(Code) | | Returns String "Null"..
|
|
|