public enum ForeignKeyChildAttributeName extends Enum<ForeignKeyChildAttributeName> implements SourceAttributeName
| Enum Constant and Description | 
|---|
| BEAN_GETTERThe name of the getter in the bean class. | 
| BEAN_SETTERThe name of the setter in the bean class. | 
| FOREIGN_COLUMN_CRITERIA_CACHE_FIELDThe name of the cache field for the criteria with which the last
 collection was accessed. | 
| FOREIGN_FIELD_JOIN_GETTERThe name of the getter method in the database object
 which joins the other table. | 
| PEER_JOIN_ALL_EXCEPT_SELECT_METHODThe name of the peer class method which joins all the other tables
 except the referenced table. | 
| PEER_JOIN_SELECT_METHODThe name of the peer class method which joins the other table. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getName()Returns the name of the referenced source element. | 
| String | toString() | 
| static ForeignKeyChildAttributeName | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ForeignKeyChildAttributeName[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ForeignKeyChildAttributeName FOREIGN_FIELD_JOIN_GETTER
public static final ForeignKeyChildAttributeName PEER_JOIN_SELECT_METHOD
public static final ForeignKeyChildAttributeName PEER_JOIN_ALL_EXCEPT_SELECT_METHOD
public static final ForeignKeyChildAttributeName FOREIGN_COLUMN_CRITERIA_CACHE_FIELD
public static final ForeignKeyChildAttributeName BEAN_GETTER
public static final ForeignKeyChildAttributeName BEAN_SETTER
public static ForeignKeyChildAttributeName[] values()
for (ForeignKeyChildAttributeName c : ForeignKeyChildAttributeName.values()) System.out.println(c);
public static ForeignKeyChildAttributeName 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 SourceAttributeNamepublic String toString()
toString in class Enum<ForeignKeyChildAttributeName>Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.