MPXJ: Microsoft Project Exchange

net.sf.mpxj
Enum DataType

Package class diagram package DataType
java.lang.Object
  extended by java.lang.Enum<DataType>
      extended by net.sf.mpxj.DataType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<DataType>, MpxjEnum

public enum DataType
extends java.lang.Enum<DataType>
implements MpxjEnum

This class represents the data type of an attribute.


Enum Constant Summary
ACCRUE
           
BOOLEAN
           
CONSTRAINT
           
CURRENCY
           
DATE
           
DURATION
           
NUMERIC
           
PERCENTAGE
           
PRIORITY
           
RATE
           
RELATION_LIST
           
RESOURCE_TYPE
           
STRING
           
TASK_TYPE
           
UNITS
           
 
Method Summary
static DataType getInstance(int type)
          Retrieve an instance of the enum based on its int value.
static DataType getInstance(java.lang.Number type)
          Retrieve an instance of the enum based on its int value.
 int getValue()
          Accessor method used to retrieve the numeric representation of the enum.
static DataType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static DataType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STRING

public static final DataType STRING

DATE

public static final DataType DATE

CURRENCY

public static final DataType CURRENCY

BOOLEAN

public static final DataType BOOLEAN

NUMERIC

public static final DataType NUMERIC

DURATION

public static final DataType DURATION

UNITS

public static final DataType UNITS

PERCENTAGE

public static final DataType PERCENTAGE

ACCRUE

public static final DataType ACCRUE

CONSTRAINT

public static final DataType CONSTRAINT

RATE

public static final DataType RATE

PRIORITY

public static final DataType PRIORITY

RELATION_LIST

public static final DataType RELATION_LIST

TASK_TYPE

public static final DataType TASK_TYPE

RESOURCE_TYPE

public static final DataType RESOURCE_TYPE
Method Detail

values

public static DataType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DataType c : DataType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DataType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getInstance

public static DataType getInstance(int type)
Retrieve an instance of the enum based on its int value.

Parameters:
type - int type
Returns:
enum instance

getInstance

public static DataType getInstance(java.lang.Number type)
Retrieve an instance of the enum based on its int value.

Parameters:
type - int type
Returns:
enum instance

getValue

public int getValue()
Accessor method used to retrieve the numeric representation of the enum.

Specified by:
getValue in interface MpxjEnum
Returns:
int representation of the enum


Copyright © 2000-2009 Packwood Software. All Rights Reserved.