Package tilda.enums
Enum FrameworkColumnType
- java.lang.Object
-
- java.lang.Enum<FrameworkColumnType>
-
- tilda.enums.FrameworkColumnType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<FrameworkColumnType>
public enum FrameworkColumnType extends java.lang.Enum<FrameworkColumnType>
Keeps track of a column that has been generated by the framework and for what purpose- Author:
- Laurent Hasson
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORMULA
FORMULA_DT
MAPPER_GROUP
MAPPER_NAME
NONE
OCC_CREATED
OCC_DELETED
OCC_LASTUPDATED
PIVOT
TS
TZ
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isManaged()
boolean
isOCC()
static FrameworkColumnType
parse(java.lang.String Str)
static FrameworkColumnType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static FrameworkColumnType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final FrameworkColumnType NONE
-
OCC_CREATED
public static final FrameworkColumnType OCC_CREATED
-
OCC_LASTUPDATED
public static final FrameworkColumnType OCC_LASTUPDATED
-
OCC_DELETED
public static final FrameworkColumnType OCC_DELETED
-
TZ
public static final FrameworkColumnType TZ
-
MAPPER_NAME
public static final FrameworkColumnType MAPPER_NAME
-
MAPPER_GROUP
public static final FrameworkColumnType MAPPER_GROUP
-
TS
public static final FrameworkColumnType TS
-
FORMULA_DT
public static final FrameworkColumnType FORMULA_DT
-
FORMULA
public static final FrameworkColumnType FORMULA
-
PIVOT
public static final FrameworkColumnType PIVOT
-
-
Method Detail
-
values
public static FrameworkColumnType[] 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 (FrameworkColumnType c : FrameworkColumnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FrameworkColumnType 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 namejava.lang.NullPointerException
- if the argument is null
-
isOCC
public boolean isOCC()
-
isManaged
public boolean isManaged()
-
parse
public static FrameworkColumnType parse(java.lang.String Str)
-
-