public static enum DBHelper.ScanCriteria extends java.lang.Enum<DBHelper.ScanCriteria>
Enum Constant and Description |
---|
ALL
The ALL type defines to scan all the objects(viz Tables/View/Synonyms)
from the given database.
|
EXCLUDE_SELECTION
The EXCLUDE_SELECTION type defines to scan the objects (viz Tables/View/Synonyms)
from the given database by excluding the objects specified in the
selectedTables/selectedViews/selectedSynonyms property from the given database.
|
INCLUDE_SELECTION
The INCLUDE_SELECTION type defines to scan the only specified objects
(viz Tables/View/Synonyms) in the selectedTables/selectedViews/selectedSynonyms property
from the given database.
|
Modifier and Type | Method and Description |
---|---|
static DBHelper.ScanCriteria |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBHelper.ScanCriteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBHelper.ScanCriteria INCLUDE_SELECTION
public static final DBHelper.ScanCriteria EXCLUDE_SELECTION
public static final DBHelper.ScanCriteria ALL
public static DBHelper.ScanCriteria[] values()
for (DBHelper.ScanCriteria c : DBHelper.ScanCriteria.values()) System.out.println(c);
public static DBHelper.ScanCriteria 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 null