Uses of Class
net.percederberg.mib.type.Type

Packages that use Type
net.percederberg.mib.symbol Provides MIB symbol handling classes.  
net.percederberg.mib.type Provides MIB type definition classes. 
 

Uses of Type in net.percederberg.mib.symbol
 

Fields in net.percederberg.mib.symbol declared as Type
protected  Type Symbol.type
          The symbol type.
 

Methods in net.percederberg.mib.symbol that return Type
 Type Symbol.getType()
          Returns the type of this symbol.
 

Methods in net.percederberg.mib.symbol with parameters of type Type
 void Symbol.setType(Type type)
          Sets the type of this symbol.
 

Constructors in net.percederberg.mib.symbol with parameters of type Type
ValueSymbol(java.lang.String name, Type type, int id)
          Creates a new value symbol with the given parameters.
ValueSymbol(java.lang.String name, Type type, Symbol parent, int id)
          Creates a new value symbol with the given parameters.
 

Uses of Type in net.percederberg.mib.type
 

Subclasses of Type in net.percederberg.mib.type
 class ArrayType
          A class for handling array type information for symbols in the MIBs.
 class CompoundType
          A class for handling composed types for symbols in the MIBs.
 class EnumerationType
          A class for handling integer type information.
 class IntegerType
          A class for handling integer type information.
 class NamedType
          A class for handling type information for named types.
 class ObjectIdentifierType
          A class for handling object id type information.
 class SnmpModuleIdentityType
          A class for handling type information for the SNMP module identity macro type.
 class SnmpNotificationType
          A class for handling type information for the SNMP notification type macro type.
 class SnmpObjectIdentityType
          A class for handling type information for the SNMP object identity macro type.
 class SnmpObjectType
          A class for handling type information for an SNMP object type.
 class SnmpTextualConventionType
          A class for handling type information for the SNMP textual convention macro type.
 class SnmpTrapType
          A class for handling type information for a SNMP trap type.
 class StringType
          A class for handling string type information.
 

Methods in net.percederberg.mib.type that return Type
 Type SnmpObjectType.getBaseType()
          Returns the basic type.
 

Methods in net.percederberg.mib.type with parameters of type Type
 void TypeAdapter.createVector(Type elementType)
          Called for vector types.
 void TypeConverter.createVector(Type elementType)
          Called for vector types.
 

Constructors in net.percederberg.mib.type with parameters of type Type
SnmpTextualConventionType(int status, java.lang.String desc, java.lang.String ref, java.lang.String hint, Type syntax)
          Creates a new SNMP object identity type with the specified values.
ArrayType(Type baseType)
          Creates a new array type with the given base type.
ArrayType(Type baseType, SizeConstraint size)
          Creates a new array type with the given base type and size.
SnmpObjectType(Type baseType, int access, int status)
          Creates a new SNMP object type with the given parameters.
SnmpObjectType(Type baseType, int access, int status, java.lang.String descr, java.util.Vector index, java.lang.Object defval)
          Creates a new SNMP object type with the given parameters.