Methods Summary |
---|
public abstract com.sun.jmx.snmp.SnmpValue | duplicate()Same as clone, but you cannot perform cloning using this object because
clone is protected. This method should call clone() .
|
public abstract java.lang.String | getTypeName()Returns a textual description of the object.
|
public boolean | isEndOfMibViewValue()This method returns false by default and is redefined
in the {@link com.sun.jmx.snmp.SnmpNull} class.
return false;
|
public boolean | isNoSuchInstanceValue()This method returns false by default and is redefined
in the {@link com.sun.jmx.snmp.SnmpNull} class.
return false;
|
public boolean | isNoSuchObjectValue()This method returns false by default and is redefined
in the {@link com.sun.jmx.snmp.SnmpNull} class.
return false;
|
public java.lang.String | toAsn1String()Returns a String form containing ASN.1 tagging information.
return "[" + getTypeName() + "] " + toString();
|
public abstract SnmpOid | toOid()Returns the value encoded as an OID.
The method is particularly useful when dealing with indexed table made of
several SNMP variables.
|