Enum Class TableChildElementName
java.lang.Object
java.lang.Enum<TableChildElementName>
org.apache.torque.templates.transformer.om.TableChildElementName
- All Implemented Interfaces:
Serializable,Comparable<TableChildElementName>,Constable,SourceElementName
Contains the child elements for a table source element which are not
defined in the Torque schema. These elements might be created
in the transformation of a table.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe foreign elements of the JOIN_GETTER.The element containing the inheritance column.A getter to join a table remote by two foreign key relations.The local elements of the JOIN_GETTER.Contains all primary key columns of the table.Contains all foreign keys referencing this table. -
Method Summary
Modifier and TypeMethodDescriptiongetName()Returns the name of the referenced source element.toString()static TableChildElementNameReturns the enum constant of this class with the specified name.static TableChildElementName[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INHERITANCE_COLUMN
The element containing the inheritance column. -
REFERENCING_FOREIGN_KEYS
Contains all foreign keys referencing this table. -
PRIMARY_KEYS
Contains all primary key columns of the table. -
JOIN_GETTER
A getter to join a table remote by two foreign key relations. -
LOCAL
The local elements of the JOIN_GETTER. -
FOREIGN
The foreign elements of the JOIN_GETTER.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getName
Returns the name of the referenced source element.- Specified by:
getNamein interfaceSourceElementName- Returns:
- the name of the referenced source element.
-
toString
- Overrides:
toStringin classEnum<TableChildElementName>
-