static enum JdbcExplorer.NodeType extends Enum<JdbcExplorer.NodeType>
| Modifier and Type | Method and Description | 
|---|---|
static JdbcExplorer.NodeType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static JdbcExplorer.NodeType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final JdbcExplorer.NodeType CATALOG
public static final JdbcExplorer.NodeType TABLE
public static final JdbcExplorer.NodeType COLUMN
public static final JdbcExplorer.NodeType ROOT
public static JdbcExplorer.NodeType[] values()
for (JdbcExplorer.NodeType c : JdbcExplorer.NodeType.values()) System.out.println(c);
public static JdbcExplorer.NodeType 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 null