public static enum DictionaryQueries.Params extends java.lang.Enum<DictionaryQueries.Params>
| Enum Constant and Description | 
|---|
ALL_TYPES
ALL_TYPES - Multiple parameters (one for each type). 
 | 
IDENTIFIER
The identifier for the object (only relevant for db implementations
 that support identifiers, and therefore IdentifierBasedIDs). 
 | 
NAMEREF
The object name, or name like. 
 | 
SCHEMA
The schema/owner. 
 | 
TYPES
A single parameter providing list of the types being queries. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DictionaryQueries.Params | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DictionaryQueries.Params[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DictionaryQueries.Params SCHEMA
public static final DictionaryQueries.Params NAMEREF
public static final DictionaryQueries.Params IDENTIFIER
public static final DictionaryQueries.Params TYPES
public static final DictionaryQueries.Params ALL_TYPES
public static DictionaryQueries.Params[] values()
for (DictionaryQueries.Params c : DictionaryQueries.Params.values()) System.out.println(c);
public static DictionaryQueries.Params 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