public enum DatabaseChildElementName extends Enum<DatabaseChildElementName> implements SourceElementName
| Enum Constant and Description | 
|---|
| ALL_TABLESThe element containing all known tables including those
 loaded from an external schema. | 
| ALL_VIEWSThe element containing all known views including those
 loaded from an external schema. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getName()Returns the name of the referenced source element. | 
| String | toString() | 
| static DatabaseChildElementName | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static DatabaseChildElementName[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DatabaseChildElementName ALL_TABLES
public static final DatabaseChildElementName ALL_VIEWS
public static DatabaseChildElementName[] values()
for (DatabaseChildElementName c : DatabaseChildElementName.values()) System.out.println(c);
public static DatabaseChildElementName 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 nullpublic String getName()
getName in interface SourceElementNamepublic String toString()
toString in class Enum<DatabaseChildElementName>Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.