|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<BasicType>
org.jboss.jca.codegenerator.BasicType
public enum BasicType

A BasicType.
| Enum Constant Summary | |
|---|---|
Boolean
boolean |
|
Byte
bye |
|
Character
char |
|
Double
double |
|
Float
float |
|
Integer
integer |
|
Long
long |
|
Short
short |
|
String
string |
|
| Method Summary | |
|---|---|
static String |
allBasicType()
return string include all basic types |
static String |
allType()
return string include all basic and primitive types |
static String |
defaultValue(String type)
return default value string |
static boolean |
isBasicType(String type)
is basic type |
static boolean |
isPrimitiveType(String type)
is primitive type |
static BasicType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BasicType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final BasicType String
public static final BasicType Boolean
public static final BasicType Integer
public static final BasicType Double
public static final BasicType Byte
public static final BasicType Short
public static final BasicType Long
public static final BasicType Float
public static final BasicType Character
| Method Detail |
|---|
public static BasicType[] values()
for (BasicType c : BasicType.values()) System.out.println(c);
public static BasicType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic static boolean isBasicType(String type)
type - type string
public static boolean isPrimitiveType(String type)
type - type string
public static String allBasicType()
public static String allType()
public static String defaultValue(String type)
type - type string
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||