public enum DbEnumType extends Enum<DbEnumType>
@DbEnumValue.| Enum Constant and Description |
|---|
INTEGER
Store values as database INTEGER.
|
VARCHAR
Store values as database VARCHAR.
|
| Modifier and Type | Method and Description |
|---|---|
static DbEnumType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DbEnumType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbEnumType INTEGER
public static final DbEnumType VARCHAR
public static DbEnumType[] values()
for (DbEnumType c : DbEnumType.values()) System.out.println(c);
public static DbEnumType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.