org.itracker.model
Enum CustomField.Type

java.lang.Object
  extended by java.lang.Enum<CustomField.Type>
      extended by org.itracker.model.CustomField.Type
All Implemented Interfaces:
Serializable, Comparable<CustomField.Type>, IntCodeEnum<CustomField.Type>
Enclosing class:
CustomField

public static enum CustomField.Type
extends Enum<CustomField.Type>
implements IntCodeEnum<CustomField.Type>

Enumeration of possible data types.


Enum Constant Summary
DATE
           
INTEGER
           
LIST
           
STRING
           
 
Field Summary
 
Fields inherited from interface org.itracker.model.IntCodeEnum
DEFAULT_CODE
 
Method Summary
 CustomField.Type fromCode(int code)
          Returns a java.lang.Enum constant matching the given integer value.
 int getCode()
          Returns the integer value representing this enum constant.
static CustomField.Type valueOf(int code)
           
static CustomField.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CustomField.Type[] 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 CustomField.Type STRING

INTEGER

public static final CustomField.Type INTEGER

DATE

public static final CustomField.Type DATE

LIST

public static final CustomField.Type LIST
Method Detail

values

public static CustomField.Type[] 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 (CustomField.Type c : CustomField.Type.values())
    System.out.println(c);

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

valueOf

public static CustomField.Type 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

getCode

public int getCode()
Description copied from interface: IntCodeEnum
Returns the integer value representing this enum constant.

Specified by:
getCode in interface IntCodeEnum<CustomField.Type>
Returns:
unique constant as defined in iTracker 2

fromCode

public CustomField.Type fromCode(int code)
Description copied from interface: IntCodeEnum
Returns a java.lang.Enum constant matching the given integer value.

This method should actually be static, so that we don't need an enum constant instance to lookup another instance by code.
However Java interfaces don't allow static methods and Java 5 enums must inherit java.lang.Enum directly. So there's no way to create a common base class with a static fromCode(int) method for all enums in our application for EnumCodeUserType to use in a type-safe way!

Specified by:
fromCode in interface IntCodeEnum<CustomField.Type>
Parameters:
code - unique enum constant as defined in iTracker 2
Returns:
java.lang.Enum constant instance for the given code

valueOf

public static CustomField.Type valueOf(int code)


Copyright © 2002-2012 itracker. All Rights Reserved.