public enum SQLiteMasterType extends Enum<SQLiteMasterType>
| Enum Constant and Description |
|---|
INDEX
Index keyword
|
TABLE
Table keyword
|
TRIGGER
Trigger keyword
|
VIEW
View keyword
|
| Modifier and Type | Method and Description |
|---|---|
static SQLiteMasterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLiteMasterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLiteMasterType TABLE
public static final SQLiteMasterType INDEX
public static final SQLiteMasterType VIEW
public static final SQLiteMasterType TRIGGER
public static SQLiteMasterType[] values()
for (SQLiteMasterType c : SQLiteMasterType.values()) System.out.println(c);
public static SQLiteMasterType 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 © 2020 National Geospatial-Intelligence Agency. All rights reserved.