net.sf.mpxj
Enum DataType

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

public enum DataType
extends Enum<DataType>
implements MpxjEnum

This class represents the data type of an attribute.


Enum Constant Summary
ACCRUE
           
ASCII_STRING
           
BINARY
           
BOOLEAN
           
CONSTRAINT
           
CURRENCY
           
DATE
           
DELAY
           
DURATION
           
GUID
           
INTEGER
           
NUMERIC
           
PERCENTAGE
           
PRIORITY
           
RATE
           
RATE_UNITS
           
RELATION_LIST
           
RESOURCE_TYPE
           
SHORT
           
STRING
           
TASK_TYPE
           
TIME_UNITS
           
UNITS
           
WORK
           
WORK_UNITS
           
WORKGROUP
           
 
Method Summary
static DataType getInstance(int type)
          Retrieve an instance of the enum based on its int value.
static DataType getInstance(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(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

TIME_UNITS

public static final DataType TIME_UNITS

WORK

public static final DataType WORK

INTEGER

public static final DataType INTEGER

ASCII_STRING

public static final DataType ASCII_STRING

SHORT

public static final DataType SHORT

BINARY

public static final DataType BINARY

DELAY

public static final DataType DELAY

WORK_UNITS

public static final DataType WORK_UNITS

WORKGROUP

public static final DataType WORKGROUP

GUID

public static final DataType GUID

RATE_UNITS

public static final DataType RATE_UNITS
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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
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(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 © 2012. All Rights Reserved.