org.apache.jdo.impl.model.java
public class: IntegralType [javadoc |
source]
java.lang.Object
org.apache.jdo.impl.model.java.AbstractJavaType
org.apache.jdo.impl.model.java.BaseReflectionJavaType
org.apache.jdo.impl.model.java.PredefinedType
org.apache.jdo.impl.model.java.PrimitiveType
org.apache.jdo.impl.model.java.IntegralType
All Implemented Interfaces:
JavaType
A IntegralType instance represents an integral type as defined in the
Java language. There are five are integral types:
byte,
short,
int,
long, and
char.
Class PredefinedType provides public static final variables referring
to the JavaType representation for integral types.
Also see:
- PredefinedType#byteType
- PredefinedType#shortType
- PredefinedType#intType
- PredefinedType#longType
- PredefinedType#charType
- author:
Michael - Bouschen
- since:
JDO - 1.0.1
| Fields inherited from org.apache.jdo.impl.model.java.PredefinedType: |
|---|
| objectType, voidType, booleanType, byteType, shortType, intType, longType, charType, floatType, doubleType, numberType, stringType, localeType, bigDecimalType, bigIntegerType, booleanClassType, byteClassType, shortClassType, integerClassType, longClassType, characterClassType, floatClassType, doubleClassType, dateType, sqlDateType, sqlTimeType, sqlTimestampType, bitsetType, collectionType, setType, listType, abstractCollectionType, abstractSetType, hashSetType, treeSetType, abstractListType, arrayListType, linkedListType, vectorType, stackType, mapType, abstractMapType, hashMapType, dictionaryType, hashtableType, propertiesType, treeMapType |
| Methods from org.apache.jdo.impl.model.java.BaseReflectionJavaType: |
|---|
|
getDeclaredJavaFields, getDeclaredJavaProperties, getJavaClass, getJavaField, getJavaProperty, getModifiers, getName, getSuperclass, getUnderlyingObject, isCompatibleWith, isInterface |
| Methods from org.apache.jdo.impl.model.java.AbstractJavaType: |
|---|
|
equals, getArrayComponentType, getDeclaredJavaFields, getDeclaredJavaProperties, getJDOClass, getJavaField, getJavaProperty, getModifiers, getName, getSuperclass, getUnderlyingObject, hashCode, isArray, isCompatibleWith, isFloatingPoint, isIntegral, isInterface, isJDOSupportedCollection, isJDOSupportedMap, isOrderable, isPersistenceCapable, isPrimitive, isTrackable, isValue, isWrapperClass, toString |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.jdo.impl.model.java.IntegralType Detail: |
public boolean isIntegral() {
return true;
}
Returns true if this JavaType represents an integral
type. |
public boolean isOrderable() {
return true;
}
Returns true if this JavaType represents an orderable
type as specified by JDO. |