Package oracle.dbtools.plugin.api.types
Enum PrimitiveWrapper
- java.lang.Object
-
- java.lang.Enum<PrimitiveWrapper>
-
- oracle.dbtools.plugin.api.types.PrimitiveWrapper
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<PrimitiveWrapper>
public enum PrimitiveWrapper extends java.lang.Enum<PrimitiveWrapper>
Enumeration of the wrapper type for each JavaPrimitivetype- Since:
- 19.3.0
- Author:
- cdivilly
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEANTheBooleantypeBYTETheBytetypeCHARACTERTheCharactertypeDOUBLETheDoubletypeFLOATTheFloattypeINTEGERTheIntegertypeLONGTheLongtypePRIMITIVEDenotes anyPrimitivetypeREFERENCEA non primitive typeSHORTTheShorttype
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisWrapper()Indicates if this represents a primitive wrapper typePrimitiveprimitive()The correspondingPrimitivetypejava.lang.Class<?>type()TheClassinstance for this primtive wrapperstatic PrimitiveWrappervalueOf(java.lang.Class<?> type)Determine the appropriatePrimitiveWrapperfor the specified typestatic PrimitiveWrappervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static PrimitiveWrapper[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOOLEAN
public static final PrimitiveWrapper BOOLEAN
TheBooleantype
-
BYTE
public static final PrimitiveWrapper BYTE
TheBytetype
-
CHARACTER
public static final PrimitiveWrapper CHARACTER
TheCharactertype
-
DOUBLE
public static final PrimitiveWrapper DOUBLE
TheDoubletype
-
FLOAT
public static final PrimitiveWrapper FLOAT
TheFloattype
-
INTEGER
public static final PrimitiveWrapper INTEGER
TheIntegertype
-
LONG
public static final PrimitiveWrapper LONG
TheLongtype
-
PRIMITIVE
public static final PrimitiveWrapper PRIMITIVE
Denotes anyPrimitivetype
-
REFERENCE
public static final PrimitiveWrapper REFERENCE
A non primitive type
-
SHORT
public static final PrimitiveWrapper SHORT
TheShorttype
-
-
Method Detail
-
values
public static PrimitiveWrapper[] 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 (PrimitiveWrapper c : PrimitiveWrapper.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PrimitiveWrapper 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
-
type
public java.lang.Class<?> type()
TheClassinstance for this primtive wrapper- Returns:
Classinstance
-
isWrapper
public boolean isWrapper()
Indicates if this represents a primitive wrapper type
-
valueOf
public static PrimitiveWrapper valueOf(java.lang.Class<?> type)
Determine the appropriatePrimitiveWrapperfor the specified type- Parameters:
type- The type to check- Returns:
PrimitiveWrapperinstance
-
-