public enum EnumConstants extends java.lang.Enum<EnumConstants>
| Enum Constant and Description |
|---|
GenerationType_IDENTITY |
GenerationType_SEQUENCE |
GenerationType_TABLE |
NamingType_LOWER_CASE |
NamingType_NONE |
NamingType_SNAKE_LOWER_CASE |
NamingType_SNAKE_UPPER_CASE |
NamingType_UPPER_CASE |
| Modifier and Type | Method and Description |
|---|---|
ClassConstants |
getClassConstant()
クラス定数を返します。
|
java.lang.String |
getImportName()
インポート名を返します。
|
java.lang.String |
getName()
名前を返します。
|
java.lang.String |
getReferenceName()
参照名を返します。
|
static EnumConstants |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumConstants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumConstants NamingType_NONE
public static final EnumConstants NamingType_UPPER_CASE
public static final EnumConstants NamingType_LOWER_CASE
public static final EnumConstants NamingType_SNAKE_UPPER_CASE
public static final EnumConstants NamingType_SNAKE_LOWER_CASE
public static final EnumConstants GenerationType_SEQUENCE
public static final EnumConstants GenerationType_TABLE
public static final EnumConstants GenerationType_IDENTITY
public static EnumConstants[] values()
for (EnumConstants c : EnumConstants.values()) System.out.println(c);
public static EnumConstants valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic ClassConstants getClassConstant()
public java.lang.String getImportName()
public java.lang.String getReferenceName()
public java.lang.String getName()