Enum SDOTypeHelperDelegate.SDOWrapperTypeId
- java.lang.Object
-
- java.lang.Enum<SDOTypeHelperDelegate.SDOWrapperTypeId>
-
- org.eclipse.persistence.sdo.helper.delegates.SDOTypeHelperDelegate.SDOWrapperTypeId
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SDOTypeHelperDelegate.SDOWrapperTypeId>
- Enclosing class:
- SDOTypeHelperDelegate
public static enum SDOTypeHelperDelegate.SDOWrapperTypeId extends java.lang.Enum<SDOTypeHelperDelegate.SDOWrapperTypeId>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SDOTypeHelperDelegate.SDOWrapperTypeId
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SDOTypeHelperDelegate.SDOWrapperTypeId[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SDO_BOOLEAN_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_BOOLEAN_WRAPPER
-
SDO_BYTE_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_BYTE_WRAPPER
-
SDO_BYTES_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_BYTES_WRAPPER
-
SDO_CHARACTER_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_CHARACTER_WRAPPER
-
SDO_DATE_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DATE_WRAPPER
-
SDO_DATETIME_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DATETIME_WRAPPER
-
SDO_DAY_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DAY_WRAPPER
-
SDO_DECIMAL_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DECIMAL_WRAPPER
-
SDO_DOUBLE_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DOUBLE_WRAPPER
-
SDO_DURATION_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DURATION_WRAPPER
-
SDO_FLOAT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_FLOAT_WRAPPER
-
SDO_INT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_INT_WRAPPER
-
SDO_INTEGER_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_INTEGER_WRAPPER
-
SDO_LONG_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_LONG_WRAPPER
-
SDO_MONTH_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_MONTH_WRAPPER
-
SDO_MONTHDAY_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_MONTHDAY_WRAPPER
-
SDO_OBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_OBJECT_WRAPPER
-
SDO_SHORT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_SHORT_WRAPPER
-
SDO_STRING_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_STRING_WRAPPER
-
SDO_STRINGS_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_STRINGS_WRAPPER
-
SDO_TIME_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_TIME_WRAPPER
-
SDO_URI_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_URI_WRAPPER
-
SDO_YEAR_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_YEAR_WRAPPER
-
SDO_YEARMONTH_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_YEARMONTH_WRAPPER
-
SDO_YEARMONTHDAY_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_YEARMONTHDAY_WRAPPER
-
SDO_BOOLEANOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_BOOLEANOBJECT_WRAPPER
-
SDO_BYTEOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_BYTEOBJECT_WRAPPER
-
SDO_CHARACTEROBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_CHARACTEROBJECT_WRAPPER
-
SDO_DOUBLEOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_DOUBLEOBJECT_WRAPPER
-
SDO_FLOATOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_FLOATOBJECT_WRAPPER
-
SDO_INTOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_INTOBJECT_WRAPPER
-
SDO_LONGOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_LONGOBJECT_WRAPPER
-
SDO_SHORTOBJECT_WRAPPER
public static final SDOTypeHelperDelegate.SDOWrapperTypeId SDO_SHORTOBJECT_WRAPPER
-
-
Method Detail
-
values
public static SDOTypeHelperDelegate.SDOWrapperTypeId[] 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 (SDOTypeHelperDelegate.SDOWrapperTypeId c : SDOTypeHelperDelegate.SDOWrapperTypeId.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SDOTypeHelperDelegate.SDOWrapperTypeId 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
-
-