public enum SqlAttributeName extends Enum<SqlAttributeName> implements SourceAttributeName
| Enum Constant and Description | 
|---|
| DDL_SQLThe attribute contains the SQL to define the column. | 
| ENUM_CONSTRAINT_NAMEThe attribute contains the constraint name if the column contains an enum. | 
| FOREIGN_COLUMN_NAMESThe attribute contains all foreign column names
 in a comma-separated String. | 
| INDEX_COLUMN_NAMESThe attribute contains all index column names
 in a comma-separated String. | 
| LOCAL_COLUMN_NAMESThe attribute contains all local column names
 in a comma-separated String. | 
| PRIMARY_KEY_COLUMN_NAMESThe attribute contains all primary key columns
 in a comma-separated String. | 
| PRIMARY_KEY_CONSTRAINT_NAMEThe attribute contains the name of the constraint defining the
 primary key of a table. | 
| SEQUENCE_NAMEThe attribute contains the name of the sequence from which
 the primary key of the table is generated. | 
| SQL_VALUEThe attribute contains the properly escaped and transformed sql value for the element. | 
| UNIQUE_COLUMN_NAMESThe attribute contains all unique column names
 in a comma-separated String. | 
| UNIQUE_COLUMN_SIZESThe attribute contains all unique column sizes
 in a comma-separated String. | 
| UNQUALIFIED_NAMEThe unqualified (without schema) table name. | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getName()Returns the name of the referenced source element attribute. | 
| String | toString() | 
| static SqlAttributeName | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static SqlAttributeName[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SqlAttributeName UNQUALIFIED_NAME
public static final SqlAttributeName PRIMARY_KEY_COLUMN_NAMES
public static final SqlAttributeName UNIQUE_COLUMN_NAMES
public static final SqlAttributeName UNIQUE_COLUMN_SIZES
public static final SqlAttributeName INDEX_COLUMN_NAMES
public static final SqlAttributeName LOCAL_COLUMN_NAMES
public static final SqlAttributeName FOREIGN_COLUMN_NAMES
public static final SqlAttributeName PRIMARY_KEY_CONSTRAINT_NAME
public static final SqlAttributeName SEQUENCE_NAME
public static final SqlAttributeName DDL_SQL
public static final SqlAttributeName ENUM_CONSTRAINT_NAME
public static final SqlAttributeName SQL_VALUE
public static SqlAttributeName[] values()
for (SqlAttributeName c : SqlAttributeName.values()) System.out.println(c);
public static SqlAttributeName 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<SqlAttributeName>Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.