public static enum DBUtil.IDQuery extends java.lang.Enum<DBUtil.IDQuery>
| Enum Constant and Description | 
|---|
BOTH
Returns both internal and external references. 
 | 
EXTERNAL
Query only external references - i.e. 
 | 
INTERNAL
Query only internal references - i.e. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DBUtil.IDQuery | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static DBUtil.IDQuery[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DBUtil.IDQuery INTERNAL
public static final DBUtil.IDQuery EXTERNAL
public static final DBUtil.IDQuery BOTH
public static DBUtil.IDQuery[] values()
for (DBUtil.IDQuery c : DBUtil.IDQuery.values()) System.out.println(c);
public static DBUtil.IDQuery 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