| |
|
| java.lang.Object snmp.SNMPObject snmp.SNMPUnknownObject
SNMPUnknownObject | public class SNMPUnknownObject extends SNMPObject (Code) | | Used when an unknown SNMP object type is encountered. Just takes a byte array
for its constructor, and uses this as raw bytes.
|
Field Summary | |
protected byte | tag |
Constructor Summary | |
public | SNMPUnknownObject(byte[] enc) Just takes a byte array, and uses this as raw bytes. |
Method Summary | |
protected byte[] | getBEREncoding() Return the BER encoding of this object. | public Object | getValue() Return a byte array containing the raw bytes supplied. | public void | setValue(Object data) Takes a byte array containing the raw bytes stored as the value. | public String | toString() Return String created from raw bytes of this object. |
SNMPUnknownObject | public SNMPUnknownObject(byte[] enc)(Code) | | Just takes a byte array, and uses this as raw bytes.
|
getBEREncoding | protected byte[] getBEREncoding()(Code) | | Return the BER encoding of this object.
|
getValue | public Object getValue()(Code) | | Return a byte array containing the raw bytes supplied.
|
toString | public String toString()(Code) | | Return String created from raw bytes of this object.
|
|
|
|