Enum Class ForeignKeyChildAttributeName
java.lang.Object
java.lang.Enum<ForeignKeyChildAttributeName>
org.apache.torque.templates.transformer.om.ForeignKeyChildAttributeName
- All Implemented Interfaces:
Serializable,Comparable<ForeignKeyChildAttributeName>,Constable,SourceAttributeName
public enum ForeignKeyChildAttributeName
extends Enum<ForeignKeyChildAttributeName>
implements SourceAttributeName
Contains the attribute names of the child elements for a foreign-key
source element which are not defined in the Torque schema.
These attributes might be created in the transformation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe name of the getter in the bean class.The name of the setter in the bean class.The name of the cache field for the criteria with which the last collection was accessed.The name of the getter method in the database object which joins the other table.The name of the peer class method which joins all the other tables except the referenced table.The name of the peer class method which joins the other table. -
Method Summary
Modifier and TypeMethodDescriptiongetName()Returns the name of the referenced source element.toString()static ForeignKeyChildAttributeNameReturns the enum constant of this class with the specified name.static ForeignKeyChildAttributeName[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FOREIGN_FIELD_JOIN_GETTER
The name of the getter method in the database object which joins the other table. -
PEER_JOIN_SELECT_METHOD
The name of the peer class method which joins the other table. -
PEER_JOIN_ALL_EXCEPT_SELECT_METHOD
The name of the peer class method which joins all the other tables except the referenced table. -
FOREIGN_COLUMN_CRITERIA_CACHE_FIELD
The name of the cache field for the criteria with which the last collection was accessed. -
BEAN_GETTER
The name of the getter in the bean class. -
BEAN_SETTER
The name of the setter in the bean class.
-
-
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 interfaceSourceAttributeName- Returns:
- the name of the referenced source element.
-
toString
- Overrides:
toStringin classEnum<ForeignKeyChildAttributeName>
-