Uses of Interface
org.snmp4j.smi.Variable
-
Packages that use Variable Package Description org.snmp4j Provides classes and interfaces for creating, sending, and receiving SNMP messages.org.snmp4j.event Provides classes and interfaces for SNMP4J event processing.org.snmp4j.security Provides classes and interfaces for authentication and privacy of SNMP(v3) messages.org.snmp4j.smi Provides classes for the representation of SMIv1/v2 data types (which also includes some basic ASN.1 primitive data types).org.snmp4j.uri org.snmp4j.util Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes. -
-
Uses of Variable in org.snmp4j
Methods in org.snmp4j that return Variable Modifier and Type Method Description VariablePDU. getVariable(OID prefix)Gets the first variable whose OID starts with the specified OID.Methods in org.snmp4j with parameters of type Variable Modifier and Type Method Description protected voidPDUv1. checkNull(Variable parameter)Checks for null parameters.protected booleanPDUv1. isVariableV1(Variable v)Check if the given variable can be encoded into a SNMPv1 PDU. -
Uses of Variable in org.snmp4j.event
Methods in org.snmp4j.event that return Variable Modifier and Type Method Description VariableCounterEvent. getCurrentValue()Gets the current value of the counter, as set by the maintainer of the counter (one of the event listeners).Methods in org.snmp4j.event with parameters of type Variable Modifier and Type Method Description voidCounterEvent. setCurrentValue(Variable currentValue)Sets the current value of the counter. -
Uses of Variable in org.snmp4j.security
Classes in org.snmp4j.security that implement Variable Modifier and Type Class Description classTsmSecurityParametersSecurityParametersimplementation for theTSMsecurity model. -
Uses of Variable in org.snmp4j.smi
Classes in org.snmp4j.smi that implement Variable Modifier and Type Class Description classAbstractVariableTheVariableabstract class is the base class for all SNMP variables.classBitStringTheBitStringclass represents the obsolete SMI type BIT STRING which has been defined in RFC 1442 (an SNMPv2 draft) but which has been obsoleteted by RFC 1902 and RFC 2578.classCounter32TheCounter32class allows all the functionality of unsigned integers but is recognized as a distinct SMI type, which is used for monotonically increasing values that wrap around at 2^32-1 (4294967295).classCounter64TheCounter64class represents a 64bit unsigned integer type.classDtlsAddressTheTlsAddressrepresents a TLS transport addresses as defined by RFC 5953 SnmpTSLAddress textual convention.classGauge32TheGauge32class is indistinguishable fromUnsignedInteger32.classGenericAddressTheGenericAddressimplements the decorator and factory design pattern to provide a generic address type.classInteger32TheInteger32represents 32bit signed integer values for SNMP.classIpAddressTheIpAddressclass represents an IPv4 address SNMP variable.classNullTheNullclass represents SMI Null and the derived SMIv2 exception syntaxes.classOctetStringTheOctetStringclass represents the SMI type OCTET STRING.classOIDThe Object Identifier Class.classOpaqueTheOpaqueclass represents the SMI type Opaque which is used to transparently exchange BER encoded values.classSMIAddressASMIAddressis an address that is defined by the Structure of Management Information (SMI) and can be thereby serialized through the Basic Encoding Rules (BER) used by the SNMP protocol.classTcpAddressTheTcpAddressrepresents TCP/IP transport addresses.classTimeTicksTheTimeTicksclass represents the time in 1/100 seconds since some epoch (which should be have been defined in the corresponding MIB specification).classTlsAddressTheTlsAddressrepresents a TLS transport addresses as defined by RFC 5953 SnmpTSLAddress textual convention.classTransportIpAddressTheTransportIpAddressis the abstract base class for all transport addresses on top of IP network addresses.classUdpAddressTheUdpAddressrepresents UDP/IP transport addresses.classUnsignedInteger32UnsignedInteger32 type is an SNMP type that represents unsigned 32bit integer values (0 to 4294967295).classVariantVariableTheVariantVariableprovides a decorator for any type of Variable instance, to be able to intercept or monitor variable value modification by using aVariantVariableCallback.Methods in org.snmp4j.smi that return Variable Modifier and Type Method Description static VariableAbstractVariable. createFromBER(BERInputStream inputStream)Creates aVariablefrom a BER encodedBERInputStream.static VariableAbstractVariable. createFromSyntax(int smiSyntax)Creates aVariablefrom the supplied SMI syntax identifier.VariableVariableBinding. getVariable()Gets the value of the variable binding.VariableVariantVariable. getVariable()Returns the typed variable that holds the wrapped value.Methods in org.snmp4j.smi with parameters of type Variable Modifier and Type Method Description abstract intAbstractVariable. compareTo(Variable o)intCounter64. compareTo(Variable o)intGenericAddress. compareTo(Variable o)intInteger32. compareTo(Variable o)intIpAddress. compareTo(Variable o)intNull. compareTo(Variable o)intOctetString. compareTo(Variable o)intOID. compareTo(Variable o)intTransportIpAddress. compareTo(Variable o)intUnsignedInteger32. compareTo(Variable o)intVariable. compareTo(Variable o)intVariantVariable. compareTo(Variable o)voidVariableBinding. setVariable(Variable variable)Sets the value of the variable binding.Constructors in org.snmp4j.smi with parameters of type Variable Constructor Description VariableBinding(OID oid, Variable variable)Creates a variable binding with the supplied OID and value.VariantVariable(Variable initialVariable)Creates a variant variable wrapping the specified value.VariantVariable(Variable initialVariable, VariantVariableCallback callback)Creates a variant variable wrapping the specified value and a callback that monitors value modifications. -
Uses of Variable in org.snmp4j.uri
Method parameters in org.snmp4j.uri with type arguments of type Variable Modifier and Type Method Description SnmpUriResponseSnmpURI. updateByValue(java.net.URI url, java.util.List<Variable> values) -
Uses of Variable in org.snmp4j.util
Methods in org.snmp4j.util that return Variable Modifier and Type Method Description VariableSimpleVariableTextFormat. parse(int smiSyntax, java.lang.String text)This operation is not supported bySimpleVariableTextFormat.VariableSimpleVariableTextFormat. parse(OID classOrInstanceOID, java.lang.String text)This operation is not supported bySimpleVariableTextFormat.VariableVariableTextFormat. parse(int smiSyntax, java.lang.String text)Parses a textual representation of a variable against a SMI type.VariableVariableTextFormat. parse(OID classOrInstanceOID, java.lang.String text)Parses a textual representation of a variable against its associated OBJECT-TYPE OID.Methods in org.snmp4j.util with parameters of type Variable Modifier and Type Method Description java.lang.StringSimpleVariableTextFormat. format(OID instanceOID, Variable variable, boolean withOID)Returns a textual representation of the supplied variable against the optionally supplied instance OID.java.lang.StringVariableTextFormat. format(OID instanceOID, Variable variable, boolean withOID)Returns a textual representation of the supplied variable against the optionally supplied instance OID.
-