|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Slot.Type>
com.softwareag.centrasite.appl.framework.persistence.mapper.annotations.Slot.Type
public static enum Slot.Type
Supported types for the slot values.
Enum Constant Summary | |
---|---|
AUTO
The default value. |
|
BOOLEAN
Maps to Boolean or boolean . |
|
CALENDAR
Maps to Calendar . |
|
DATE
Maps to Date . |
|
INTEGER
Maps to Integer or int . |
|
LONG
Maps to Long , or long . |
|
TIMESTAMP
Maps to Date as timestamp. |
Method Summary | |
---|---|
static Slot.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Slot.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 |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Slot.Type BOOLEAN
Boolean
or boolean
.
public static final Slot.Type DATE
Date
.
public static final Slot.Type CALENDAR
Calendar
.
public static final Slot.Type INTEGER
Integer
or int
.
public static final Slot.Type TIMESTAMP
Date
as timestamp.
public static final Slot.Type AUTO
public static final Slot.Type LONG
Long
, or long
.
Method Detail |
---|
public static Slot.Type[] values()
for (Slot.Type c : Slot.Type.values()) System.out.println(c);
public static Slot.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |