|
EclipseLink 2.4.2, build 'v20130514-5956486' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IType
The external representation of a Java type.
Field Summary | |
---|---|
static java.lang.String |
UNRESOLVABLE_TYPE
Special constant used to specify this IType represents an unresolvable type, or simply
an unknown type. |
Method Summary | |
---|---|
IterableIterator<IConstructor> |
constructors()
Returns the external representation of the Java class's constructors. |
boolean |
equals(IType type)
Determines whether the given type represents the same Java type thank this one. |
java.lang.String[] |
getEnumConstants()
If this IType represents an Enum type, then this method should returns the
name of the constants. |
java.lang.String |
getName()
Returns the fully qualified class name. |
ITypeDeclaration |
getTypeDeclaration()
Returns the declaration of the Java class, which gives the information about type parameters, dimensionality, etc. |
boolean |
hasAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
Determines whether the given annotation is present on this type. |
boolean |
isAssignableTo(IType type)
Determines whether this type is an instance of the given type. |
boolean |
isEnum()
Determines whether this IType represents an Enum . |
boolean |
isResolvable()
Determines whether this Java type actually exists. |
Field Detail |
---|
static final java.lang.String UNRESOLVABLE_TYPE
IType
represents an unresolvable type, or simply
an unknown type. This has to be handled by ITypeRepository.getType(String)
.
Method Detail |
---|
IterableIterator<IConstructor> constructors()
boolean equals(IType type)
Note: Object.hashCode()
needs to be overridden.
type
- The type to compare with this one
true
if the given type and this one represents the
same Java type; false
otherwisejava.lang.String[] getEnumConstants()
IType
represents an Enum
type, then this method should returns the
name of the constants.
Enum
constant or an empty list if the type is not an
Enum
java.lang.String getName()
ITypeDeclaration getTypeDeclaration()
boolean hasAnnotation(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
annotationType
- The class of the annotation
true
if the annotation is defined on this type; false
otherwiseboolean isAssignableTo(IType type)
type
- The type used to determine if the class represented by this external form is an
instance of with one
true
if this type is an instance of the given type; false
otherwiseboolean isEnum()
IType
represents an Enum
.
true
if this is an Enum
; false
otherwiseboolean isResolvable()
true
if the actual Java type can be located on the application's class
path; false
if it could not be found
|
EclipseLink 2.4.2, build 'v20130514-5956486' API Reference | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |