public enum SQLiteMasterColumn extends Enum<SQLiteMasterColumn>
| Enum Constant and Description |
|---|
NAME
The sqlite_master.name column will hold the name of the object.
|
ROOTPAGE
The sqlite_master.rootpage column stores the page number of the root
b-tree page for tables and indexes.
|
SQL
The sqlite_master.sql column stores SQL text that describes the object.
|
TBL_NAME
The sqlite_master.tbl_name column holds the name of a table or view that
the object is associated with.
|
TYPE
The sqlite_master.type column will be one of the following text strings:
'table', 'index', 'view', or 'trigger' according to the type of object
defined.
|
| Modifier and Type | Method and Description |
|---|---|
static SQLiteMasterColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLiteMasterColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLiteMasterColumn TYPE
public static final SQLiteMasterColumn NAME
public static final SQLiteMasterColumn TBL_NAME
public static final SQLiteMasterColumn ROOTPAGE
public static final SQLiteMasterColumn SQL
public static SQLiteMasterColumn[] values()
for (SQLiteMasterColumn c : SQLiteMasterColumn.values()) System.out.println(c);
public static SQLiteMasterColumn 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 National Geospatial-Intelligence Agency. All rights reserved.