Package com.sun.codemodel
Class ClassType
- java.lang.Object
-
- com.sun.codemodel.ClassType
-
public final class ClassType extends java.lang.Object
This helps enable whether the JDefinedClass is a Class or Interface or AnnotationTypeDeclaration or Enum
-
-
Field Summary
Fields Modifier and Type Field Description static ClassType
ANNOTATION_TYPE_DECL
static ClassType
CLASS
(package private) java.lang.String
declarationToken
The keyword used to declare this type.static ClassType
ENUM
static ClassType
INTERFACE
-
Constructor Summary
Constructors Modifier Constructor Description private
ClassType(java.lang.String token)
-
-
-
Field Detail
-
declarationToken
final java.lang.String declarationToken
The keyword used to declare this type.
-
CLASS
public static final ClassType CLASS
-
INTERFACE
public static final ClassType INTERFACE
-
ANNOTATION_TYPE_DECL
public static final ClassType ANNOTATION_TYPE_DECL
-
ENUM
public static final ClassType ENUM
-
-