Package org.snmp4j.util
Class SimpleVariableTextFormat
java.lang.Object
org.snmp4j.util.SimpleVariableTextFormat
- All Implemented Interfaces:
VariableTextFormat
The
SimpleVariableTextFormat implements a simple textual
representation for SNMP variables based on their type only.
No MIB information is used (can be used).- Since:
- 1.10
- Version:
- 1.10
- Author:
- Frank Fock
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns a textual representation of the supplied variable against the optionally supplied instance OID.This operation is not supported bySimpleVariableTextFormat.This operation is not supported bySimpleVariableTextFormat.parseVariableBinding(String text) Parses a textual representation of a variable binding.
-
Constructor Details
-
SimpleVariableTextFormat
public SimpleVariableTextFormat()Creates a simple variable text format.
-
-
Method Details
-
format
Returns a textual representation of the supplied variable against the optionally supplied instance OID.- Specified by:
formatin interfaceVariableTextFormat- Parameters:
instanceOID- the instance OIDvariableis associated with. Ifnullthe formatting cannot take any MIB specification of the variable into account and has to format it based on its type only.variable- the variable to format.withOID- iftruetheinstanceOIDshould be included in the textual representation to form aVariableBindingrepresentation.- Returns:
- the textual representation.
-
parse
This operation is not supported bySimpleVariableTextFormat.- Specified by:
parsein interfaceVariableTextFormat- Parameters:
smiSyntax- the SMI syntax identifier identifying the targetVariable.text- a textual representation of the variable.- Returns:
- the new
Variableinstance. - Throws:
ParseException- if the variable cannot be parsed successfully.
-
parse
This operation is not supported bySimpleVariableTextFormat.- Specified by:
parsein interfaceVariableTextFormat- Parameters:
classOrInstanceOID- the instance OIDvariableis associated with. Must not benull.text- a textual representation of the variable.- Returns:
- the new
Variableinstance. - Throws:
ParseException- if the variable cannot be parsed successfully.
-
parseVariableBinding
Description copied from interface:VariableTextFormatParses a textual representation of a variable binding.- Specified by:
parseVariableBindingin interfaceVariableTextFormat- Parameters:
text- a textual representation of the variable binding.- Returns:
- the new
VariableBindinginstance. - Throws:
ParseException- if the variable binding cannot be parsed successfully.
-