public static enum PostgisTable.FieldType extends Enum<PostgisTable.FieldType>
| Enum Constant and Description |
|---|
AUTOINCREMENT |
FLOAT |
GEOMETRY |
INT |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static PostgisTable.FieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostgisTable.FieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostgisTable.FieldType INT
public static final PostgisTable.FieldType TEXT
public static final PostgisTable.FieldType FLOAT
public static final PostgisTable.FieldType GEOMETRY
public static final PostgisTable.FieldType AUTOINCREMENT
public static PostgisTable.FieldType[] values()
for (PostgisTable.FieldType c : PostgisTable.FieldType.values()) System.out.println(c);
public static PostgisTable.FieldType 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 © 2022. All Rights Reserved.