Package org.eclipse.persistence.jpa.jpql
Interface ITypeHelper
-
- All Known Implementing Classes:
GenericTypeHelper
public interface ITypeHelper- Since:
- 2.4
- Version:
- 2.4
- Author:
- Pascal Filion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectbigDecimal()Retrieves the;@link IType} for;@link BigDecimal}.ObjectbigInteger()Retrieves the;@link IType} for;@link BigInteger}.ObjectbooleanType()Retrieves the;@link IType} for;@link Boolean}.ObjectbyteType()Retrieves the;@link IType} for;@link Byte}.ObjectcharacterType()Retrieves the;@link IType} for;@link Character}.ObjectcollectionType()Retrieves the;@link IType} for;@link Collection}.ObjectconvertPrimitive(Object type)Converts the given;@link IType}, if it's representing a primitive type, into the class of the same type.ObjectdateType()Retrieves the;@link IType} for;@link Date}.ObjectdoubleType()Retrieves the;@link IType} for;@link Double}.ObjectenumType()Retrieves the;@link IType} for;@link Enum}.ObjectfloatType()Retrieves the;@link IType} for;@link Float}.ObjectgetType(Class<?> type)Returns the;@link IType} of the given Java type.ObjectgetType(String typeName)Retrieves the external class for the given fully qualified class name.ObjectintegerType()Retrieves the;@link IType} for;@link Integer}.booleanisBooleanType(Object type)Determines whether the given;@link IType} is a;@link Boolean}.booleanisCollectionType(Object type)Determines whether the given;@link IType} is an instance of;@link Collection}.booleanisDateType(Object type)Determines whether the given;@link IType} is a;@link Date},;@link Timestamp} or ;@link Calendar}.booleanisEnumType(Object type)Determines whether the given;@link IType} is an instance of;@link Enum}.booleanisFloatingType(Object type)Determines whether the given;@link IType} is an instance of a floating type, which is eitherFloat,Double, float or double.booleanisIntegralType(Object type)Determines whether the given;@link IType} is an instance of a floating type, which is eitherInteger,Long, int or float.booleanisMapType(Object type)Determines whether the given;@link IType} is an instance of;@link Map}.booleanisNumericType(Object type)Determines whether the given;@link IType} is an instance of;@link Numeric}.booleanisObjectType(Object type)Determines whether the given;@link IType} is the external form of;@link Object}.booleanisPrimitiveType(Object type)Determines whether the given;@link IType} represents a primitive type.booleanisStringType(Object type)Determines whether the given;@link IType} represents theStringclass.ObjectlongType()Retrieves the;@link IType} for;@link Long}.ObjectlongType(Object type)Converts the given;@link IType}, if it's the primitive long, into theLongtype.ObjectmapType()Retrieves the;@link IType} for;@link Map}.ObjectnumberType()Retrieves the;@link IType} for;@link Number}.ObjectobjectType()Retrieves the;@link IType} for;@link Object}.ObjectobjectTypeDeclaration()Returns the;@link Object } for the;@link IType} representing theObjectclass.ObjectprimitiveBoolean()Retrieves the;@link IType} for the primitive boolean.ObjectprimitiveByte()Retrieves the;@link IType} for the primitive byte.ObjectprimitiveChar()Retrieves the;@link IType} for the primitive char.ObjectprimitiveDouble()Retrieves the;@link IType} for the primitive double.ObjectprimitiveFloat()Retrieves the;@link IType} for the primitive float.ObjectprimitiveInteger()Retrieves the;@link IType} for the primitive int.ObjectprimitiveLong()Retrieves the;@link IType} for the primitive long.ObjectprimitiveShort()Retrieves the;@link IType} for the primitive short.ObjectshortType()Retrieves the;@link IType} for;@link Short}.ObjectstringType()Retrieves the;@link IType} for;@link String}.ObjecttimestampType()Retrieves the;@link IType} for;@link Timestamp}.ObjecttoBooleanType(Object type)Converts the given;@link IType}, if it's the primitive boolean, into theBooleantype.ObjecttoByteType(Object type)Converts the given;@link IType}, if it's the primitive byte, into theBytetype.ObjecttoDoubleType(Object type)Converts the given;@link IType}, if it's the primitive double, into theDoubletype.ObjecttoFloatType(Object type)Converts the given;@link IType}, if it's the primitive float, into theFloattype.ObjecttoIntegerType(Object type)Converts the given;@link IType}, if it's the primitive int, into theIntegertype.ObjecttoShortType(Object type)Converts the given;@link IType}, if it's the primitive short, into theShorttype.ObjectunknownType()Retrieves the;@link IType} that represents an unknown type.ObjectunknownTypeDeclaration()Returns the;@link Object } for the;@link IType} representing an unknown type.
-
-
-
Method Detail
-
bigDecimal
Object bigDecimal()
Retrieves the;@link IType} for;@link BigDecimal}.- Returns:
- The external form of the
BigDecimalclass
-
bigInteger
Object bigInteger()
Retrieves the;@link IType} for;@link BigInteger}.- Returns:
- The external form of the
BigIntegerclass
-
booleanType
Object booleanType()
Retrieves the;@link IType} for;@link Boolean}.- Returns:
- The external form of the
Booleanclass
-
byteType
Object byteType()
Retrieves the;@link IType} for;@link Byte}.- Returns:
- The external form of the
Byteclass
-
characterType
Object characterType()
Retrieves the;@link IType} for;@link Character}.- Returns:
- The external form of the
Characterclass
-
collectionType
Object collectionType()
Retrieves the;@link IType} for;@link Collection}.- Returns:
- The external form of the
Collectionclass
-
convertPrimitive
Object convertPrimitive(Object type)
Converts the given;@link IType}, if it's representing a primitive type, into the class of the same type.- Parameters:
type- Type to possibly convert from the primitive into the class- Returns:
- The given;@link IType} if it's not a primitive type otherwise the primitive type will have been converted into the class of that primitive
-
dateType
Object dateType()
Retrieves the;@link IType} for;@link Date}.- Returns:
- The external form of the
Dateclass
-
doubleType
Object doubleType()
Retrieves the;@link IType} for;@link Double}.- Returns:
- The external form of the
Doubleclass
-
enumType
Object enumType()
Retrieves the;@link IType} for;@link Enum}.- Returns:
- The external form of the
Enumclass
-
floatType
Object floatType()
Retrieves the;@link IType} for;@link Float}.- Returns:
- The external form of the
Floatclass
-
getType
Object getType(Class<?> type)
Returns the;@link IType} of the given Java type.- Parameters:
type- The Java type for which its external form will be returned- Returns:
- The;@link IType} representing the given Java type
-
getType
Object getType(String typeName)
Retrieves the external class for the given fully qualified class name.- Parameters:
typeName- The fully qualified class name of the class to retrieve- Returns:
- The external form of the class to retrieve
-
integerType
Object integerType()
Retrieves the;@link IType} for;@link Integer}.- Returns:
- The external form of the
Integerclass
-
isBooleanType
boolean isBooleanType(Object type)
Determines whether the given;@link IType} is a;@link Boolean}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is a;@link Boolean};falseotherwise
-
isCollectionType
boolean isCollectionType(Object type)
Determines whether the given;@link IType} is an instance of;@link Collection}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is an instance of;@link Collection};falseotherwise
-
isDateType
boolean isDateType(Object type)
Determines whether the given;@link IType} is a;@link Date},;@link Timestamp} or ;@link Calendar}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is a;@link Date},;@link Timestamp} or ;@link Calendar}
-
isEnumType
boolean isEnumType(Object type)
Determines whether the given;@link IType} is an instance of;@link Enum}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is an instance of;@link Enum};falseotherwise
-
isFloatingType
boolean isFloatingType(Object type)
Determines whether the given;@link IType} is an instance of a floating type, which is eitherFloat,Double, float or double.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is a floating type;falseotherwise
-
isIntegralType
boolean isIntegralType(Object type)
Determines whether the given;@link IType} is an instance of a floating type, which is eitherInteger,Long, int or float.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is a integral type;falseotherwise
-
isMapType
boolean isMapType(Object type)
Determines whether the given;@link IType} is an instance of;@link Map}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is an instance of;@link Map};falseotherwise
-
isNumericType
boolean isNumericType(Object type)
Determines whether the given;@link IType} is an instance of;@link Numeric}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is an instance of;@link Numeric};falseotherwise
-
isObjectType
boolean isObjectType(Object type)
Determines whether the given;@link IType} is the external form of;@link Object}.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} is the external form of;@link Object}
-
isPrimitiveType
boolean isPrimitiveType(Object type)
Determines whether the given;@link IType} represents a primitive type.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} represents a primitive;falseotherwise
-
isStringType
boolean isStringType(Object type)
Determines whether the given;@link IType} represents theStringclass.- Parameters:
type- The type to check it's assignability- Returns:
trueif the given;@link IType} represents theStringclass;falseotherwise
-
longType
Object longType()
Retrieves the;@link IType} for;@link Long}.- Returns:
- The external form of the
Longclass
-
longType
Object longType(Object type)
Converts the given;@link IType}, if it's the primitive long, into theLongtype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive long or the;@link IType} for the class
Long
-
mapType
Object mapType()
Retrieves the;@link IType} for;@link Map}.- Returns:
- The external form of the
Mapclass
-
numberType
Object numberType()
Retrieves the;@link IType} for;@link Number}.- Returns:
- The external form of the
Numberclass
-
objectType
Object objectType()
Retrieves the;@link IType} for;@link Object}.- Returns:
- The external form of the
Objectclass
-
objectTypeDeclaration
Object objectTypeDeclaration()
Returns the;@link Object } for the;@link IType} representing theObjectclass.- Returns:
- The;@link Object } of the
Objectclass
-
primitiveBoolean
Object primitiveBoolean()
Retrieves the;@link IType} for the primitive boolean.- Returns:
- The external form of the primitive boolean
-
primitiveByte
Object primitiveByte()
Retrieves the;@link IType} for the primitive byte.- Returns:
- The external form of the primitive byte
-
primitiveChar
Object primitiveChar()
Retrieves the;@link IType} for the primitive char.- Returns:
- The external form of the primitive char
-
primitiveDouble
Object primitiveDouble()
Retrieves the;@link IType} for the primitive double.- Returns:
- The external form of the primitive double
-
primitiveFloat
Object primitiveFloat()
Retrieves the;@link IType} for the primitive float.- Returns:
- The external form of the primitive float
-
primitiveInteger
Object primitiveInteger()
Retrieves the;@link IType} for the primitive int.- Returns:
- The external form of the primitive int
-
primitiveLong
Object primitiveLong()
Retrieves the;@link IType} for the primitive long.- Returns:
- The external form of the primitive long
-
primitiveShort
Object primitiveShort()
Retrieves the;@link IType} for the primitive short.- Returns:
- The external form of the primitive short
-
shortType
Object shortType()
Retrieves the;@link IType} for;@link Short}.- Returns:
- The external form of the
Shortclass
-
stringType
Object stringType()
Retrieves the;@link IType} for;@link String}.- Returns:
- The external form of the
Stringclass
-
timestampType
Object timestampType()
Retrieves the;@link IType} for;@link Timestamp}.- Returns:
- The external form of the
Timestampclass
-
toBooleanType
Object toBooleanType(Object type)
Converts the given;@link IType}, if it's the primitive boolean, into theBooleantype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive boolean or the;@link IType} for the class
Boolean
-
toByteType
Object toByteType(Object type)
Converts the given;@link IType}, if it's the primitive byte, into theBytetype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive byte or the;@link IType} for the class
Byte
-
toDoubleType
Object toDoubleType(Object type)
Converts the given;@link IType}, if it's the primitive double, into theDoubletype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive double or the;@link IType} for the class
Double
-
toFloatType
Object toFloatType(Object type)
Converts the given;@link IType}, if it's the primitive float, into theFloattype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive float or the;@link IType} for the class
Float
-
toIntegerType
Object toIntegerType(Object type)
Converts the given;@link IType}, if it's the primitive int, into theIntegertype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive int or the;@link IType} for the class
Integer
-
toShortType
Object toShortType(Object type)
Converts the given;@link IType}, if it's the primitive short, into theShorttype.- Parameters:
type- The;@link IType} to possibly convert- Returns:
- The given type if it's not the primitive short or the;@link IType} for the class
Short
-
unknownType
Object unknownType()
Retrieves the;@link IType} that represents an unknown type.- Returns:
- The external form of an unknown type
-
unknownTypeDeclaration
Object unknownTypeDeclaration()
Returns the;@link Object } for the;@link IType} representing an unknown type.- Returns:
- The;@link Object } of the unknown type
-
-