global
Class AttrType

java.lang.Object
  extended byglobal.AttrType

public class AttrType
extends java.lang.Object

Enumeration class for AttrType


Field Summary
static int attrInteger
           
static int attrNull
           
static int attrReal
           
static int attrString
           
static int attrSymbol
           
 int attrType
           
 
Constructor Summary
AttrType(int _attrType)
          AttrType Constructor
An attribute type of String can be defined as AttrType attrType = new AttrType(AttrType.attrString); and subsequently used as if (attrType.attrType == AttrType.attrString) ....
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

attrString

public static final int attrString
See Also:
Constant Field Values

attrInteger

public static final int attrInteger
See Also:
Constant Field Values

attrReal

public static final int attrReal
See Also:
Constant Field Values

attrSymbol

public static final int attrSymbol
See Also:
Constant Field Values

attrNull

public static final int attrNull
See Also:
Constant Field Values

attrType

public int attrType
Constructor Detail

AttrType

public AttrType(int _attrType)
AttrType Constructor
An attribute type of String can be defined as and subsequently used as

Parameters:
_attrType - The types of attributes available in this class
Method Detail

toString

public java.lang.String toString()