Uses of Interface
org.snmp4j.model.snmp.proxy.SnmpProxyColumn
Packages that use SnmpProxyColumn
Package
Description
-
Uses of SnmpProxyColumn in org.snmp4j.model.snmp.api
Classes in org.snmp4j.model.snmp.api with type parameters of type SnmpProxyColumnModifier 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 SnmpProxyColumnModifier and TypeMethodDescriptionTableHelper.StringSnmpProxyColumnFactory.createSnmpProxyColumn
(org.snmp4j.smi.OID oid, Class<String> valueClass, org.snmp4j.smi.MaxAccess smiMaxAccess, int smiSyntax, int minWidth, int maxWidth, String header) Methods in org.snmp4j.model.snmp.api that return types with arguments of type SnmpProxyColumnModifier and TypeMethodDescriptionstatic List<SnmpProxyColumn<String>>
TableHelper.buildColumns
(com.snmp4j.smi.SmiObjectType entryObjet) Create the column proxy elements based on a table entry object type.static <T> List<SnmpProxyColumn<T>>
TableHelper.buildColumns
(com.snmp4j.smi.SmiObjectType child, Class<T> valueClass, SnmpProxyColumnFactory<T> columnFactory) static <T> List<SnmpProxyColumn<T>>
TableHelper.getSnmpProxyColumns
(com.snmp4j.smi.SmiObjectType parentObjectType, Class<T> valueClass, SnmpProxyColumnFactory<T> columnFactory, List<com.snmp4j.smi.SmiObjectType> smiObjectTypes) Get the proxy columns for the specified SNMP table definition. -
Uses of SnmpProxyColumn in org.snmp4j.model.snmp.proxy
Classes in org.snmp4j.model.snmp.proxy with type parameters of type SnmpProxyColumnModifier 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.Subinterfaces of SnmpProxyColumn in org.snmp4j.model.snmp.proxyModifier and TypeInterfaceDescriptioninterface
TheSnmpProxyIndexColumn
interface identifies index column proxy objects.Methods in org.snmp4j.model.snmp.proxy that return SnmpProxyColumnModifier and TypeMethodDescriptionSnmpProxyColumnFactory.createSnmpProxyColumn
(org.snmp4j.smi.OID oid, Class<T> valueClass, org.snmp4j.smi.MaxAccess smiMaxAccess, int smiSyntax, int minWidth, int maxWidth, String header) Creates a new proxy column. -
Uses of SnmpProxyColumn in org.snmp4j.model.snmp.proxy.impl
Classes in org.snmp4j.model.snmp.proxy.impl with type parameters of type SnmpProxyColumnModifier 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 SnmpProxyColumnModifier and TypeClassDescriptionclass
SnmpColumn<T>
The SnmpColumn class represents a columnar MIB object.class
The SnmpIndexColumn represents a columnar object that is used as an INDEX element of a specific table. -
Uses of SnmpProxyColumn in org.snmp4j.model.snmp.spi
Classes in org.snmp4j.model.snmp.spi with type parameters of type SnmpProxyColumnModifier and TypeInterfaceDescriptioninterface
SnmpProxyFactory<T,
C extends SnmpProxyColumn<T>, IC extends SnmpProxyIndexColumn<T>, IT, R extends SnmpProxyRow<IT, T>> TheSnmpProxyFactory
createsSnmpProxyObject
s.