Uses of Interface
org.snmp4j.model.snmp.proxy.SnmpProxyIndexColumn
Packages that use SnmpProxyIndexColumn
Package
Description
-
Uses of SnmpProxyIndexColumn in org.snmp4j.model.snmp.api
Classes in org.snmp4j.model.snmp.api with type parameters of type SnmpProxyIndexColumnModifier and TypeClassDescriptionclass
DefaultSnmpProxyFactory<T,
C extends SnmpProxyColumn<T>, IC extends SnmpProxyIndexColumn<T>, IT, R extends SnmpProxyRow<IT, T>> TheDefaultSnmpProxyRegistry
implements aSnmpProxyFactory
for the proxy objects defined in theorg.snmp4j.proxy.impl
package.Methods in org.snmp4j.model.snmp.api that return types with arguments of type SnmpProxyIndexColumnModifier and TypeMethodDescriptionstatic List<SnmpProxyIndexColumn<String>>
TableHelper.buildIndexColumns
(com.snmp4j.smi.SmiObjectType child) static <T> List<SnmpProxyIndexColumn<T>>
TableHelper.buildIndexColumns
(com.snmp4j.smi.SmiObjectType child, Class<T> valueClass, SnmpProxyColumnFactory<T> columnFactory) -
Uses of SnmpProxyIndexColumn in org.snmp4j.model.snmp.proxy
Classes in org.snmp4j.model.snmp.proxy with type parameters of type SnmpProxyIndexColumnModifier and TypeInterfaceDescriptioninterface
SnmpTable<C extends SnmpProxyColumn,
IC extends SnmpProxyIndexColumn, IT, T, R extends SnmpProxyRow<IT, T>> TheSnmpTable
defines the interface for writable table proxies.interface
SnmpTableRO<IC extends SnmpProxyIndexColumn,
C extends SnmpProxyColumn, IT, T, R extends SnmpProxyRow<IT, T>> The SnmpTableRO object is a proxy to for a read-only SNMP table object. -
Uses of SnmpProxyIndexColumn in org.snmp4j.model.snmp.proxy.impl
Classes in org.snmp4j.model.snmp.proxy.impl with type parameters of type SnmpProxyIndexColumnModifier and TypeClassDescriptionclass
SnmpTableImpl<IC extends SnmpProxyIndexColumn,
C extends SnmpProxyColumn, IT, T, R extends SnmpProxyRow<IT, T>> The SnmpTableImpl class implements a writable SNMP table that implements the JavaTableModel
.class
SnmpTableImplRO<C extends SnmpProxyColumn,
IC extends SnmpProxyIndexColumn, IT, T, R extends SnmpProxyRow<IT, T>> TheSnmpTableImplRO
class implements a proxy for a read-only SNMP table.Classes in org.snmp4j.model.snmp.proxy.impl that implement SnmpProxyIndexColumnModifier and TypeClassDescriptionclass
The SnmpIndexColumn represents a columnar object that is used as an INDEX element of a specific table.Methods in org.snmp4j.model.snmp.proxy.impl with parameters of type SnmpProxyIndexColumnModifier and TypeMethodDescriptionstatic org.snmp4j.smi.VariableBinding
SnmpTableImplRO.getIndexVariable
(SnmpProxyIndexColumn indexColumn, org.snmp4j.smi.OID subIndex) Method parameters in org.snmp4j.model.snmp.proxy.impl with type arguments of type SnmpProxyIndexColumnModifier and TypeMethodDescriptionList<org.snmp4j.smi.OID>
SnmpTableImplRO.getIndexOIDs
(org.snmp4j.smi.OID index, List<? extends SnmpProxyIndexColumn> indexColumns) Split a table index into an array of object IDs each representing the value of its corresponding index object.static List<org.snmp4j.smi.VariableBinding>
SnmpTableImplRO.getIndexVariables
(List<? extends SnmpProxyIndexColumn> indexes, List<? extends org.snmp4j.smi.OID> indexValues) static List<org.snmp4j.smi.VariableBinding>
SnmpTableImplRO.getIndexVariableTemplates
(List<? extends SnmpProxyIndexColumn> indexes) -
Uses of SnmpProxyIndexColumn in org.snmp4j.model.snmp.spi
Classes in org.snmp4j.model.snmp.spi with type parameters of type SnmpProxyIndexColumnModifier and TypeInterfaceDescriptioninterface
SnmpProxyFactory<T,
C extends SnmpProxyColumn<T>, IC extends SnmpProxyIndexColumn<T>, IT, R extends SnmpProxyRow<IT, T>> TheSnmpProxyFactory
createsSnmpProxyObject
s.