net.percederberg.mib.type
Class ArrayType

java.lang.Object
  |
  +--net.percederberg.mib.type.Type
        |
        +--net.percederberg.mib.type.ArrayType

public class ArrayType
extends Type

A class for handling array type information for symbols in the MIBs.

Version:
1.0
Author:
Per Cederberg, per@percederberg.net

Constructor Summary
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.
 
Method Summary
 boolean equals(java.lang.Object obj)
          Checks if this type equals another.
 java.lang.String toString()
          Returns a string description of this type.
 void transferType(TypeConverter converter)
          Transfers the type information from this type to a type converter object.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ArrayType

public ArrayType(Type baseType)
Creates a new array type with the given base type.

Parameters:
baseType - the array base type

ArrayType

public ArrayType(Type baseType,
                 SizeConstraint size)
Creates a new array type with the given base type and size.

Parameters:
baseType - the array base type
size - a size constraint
Method Detail

equals

public boolean equals(java.lang.Object obj)
Checks if this type equals another.

Specified by:
equals in class Type
Parameters:
obj - an object
Returns:
true if the types are equal, false otherwise

toString

public java.lang.String toString()
Returns a string description of this type.

Specified by:
toString in class Type
Returns:
a string description of the type

transferType

public void transferType(TypeConverter converter)
Transfers the type information from this type to a type converter object. The calling conventions declared in the TypeConverter class are followed.

Specified by:
transferType in class Type
Parameters:
converter - a type converter