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 JavaPrimitive
type- Since:
- 19.3.0
- Author:
- cdivilly
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
TheBoolean
typeBYTE
TheByte
typeCHARACTER
TheCharacter
typeDOUBLE
TheDouble
typeFLOAT
TheFloat
typeINTEGER
TheInteger
typeLONG
TheLong
typePRIMITIVE
Denotes anyPrimitive
typeREFERENCE
A non primitive typeSHORT
TheShort
type
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isWrapper()
Indicates if this represents a primitive wrapper typePrimitive
primitive()
The correspondingPrimitive
typejava.lang.Class<?>
type()
TheClass
instance for this primtive wrapperstatic PrimitiveWrapper
valueOf(java.lang.Class<?> type)
Determine the appropriatePrimitiveWrapper
for the specified typestatic PrimitiveWrapper
valueOf(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
TheBoolean
type
-
BYTE
public static final PrimitiveWrapper BYTE
TheByte
type
-
CHARACTER
public static final PrimitiveWrapper CHARACTER
TheCharacter
type
-
DOUBLE
public static final PrimitiveWrapper DOUBLE
TheDouble
type
-
FLOAT
public static final PrimitiveWrapper FLOAT
TheFloat
type
-
INTEGER
public static final PrimitiveWrapper INTEGER
TheInteger
type
-
LONG
public static final PrimitiveWrapper LONG
TheLong
type
-
PRIMITIVE
public static final PrimitiveWrapper PRIMITIVE
Denotes anyPrimitive
type
-
REFERENCE
public static final PrimitiveWrapper REFERENCE
A non primitive type
-
SHORT
public static final PrimitiveWrapper SHORT
TheShort
type
-
-
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()
TheClass
instance for this primtive wrapper- Returns:
Class
instance
-
isWrapper
public boolean isWrapper()
Indicates if this represents a primitive wrapper type
-
valueOf
public static PrimitiveWrapper valueOf(java.lang.Class<?> type)
Determine the appropriatePrimitiveWrapper
for the specified type- Parameters:
type
- The type to check- Returns:
PrimitiveWrapper
instance
-
-