Enum ColumnAttributeName
- Alle implementierten Schnittstellen:
Serializable
,Comparable<ColumnAttributeName>
,java.lang.constant.Constable
,SourceAttributeName
Contains the attributes for a column source element which are not
defined in the Torque schema.
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum-Konstanten - Übersicht
Enum-KonstantenEnum-KonstanteBeschreibungThe unqualified name of the enum type of the column.The package of the enum type of the column.The unqualified class name of the value contained in enum type of the column.The object (non-primitive) type for a field.Whether to generate an enum type for the column (nb: predefined enums can be defined which need not be generated).Whether this column is an enum.Whether the column is a number column.The name of constant for the column name in the peer class.The column index, 1 based.Whether the column is a primitive column.The fully qualified name of the column, i. e. prefixed with the database schema name if a schema name was given.The getter to get the column from a result set.An instance of the object for the type map. -
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetName()
Returns the name of the referenced source element attribute.toString()
static ColumnAttributeName
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static ColumnAttributeName[]
values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
-
Enum-Konstanten - Details
-
PRIMITIVE_TYPE
Whether the column is a primitive column. -
NUMBER_TYPE
Whether the column is a number column. -
PEER_COLUMN_NAME
The name of constant for the column name in the peer class. -
QUALIFIED_COLUMN_NAME
The fully qualified name of the column, i. e. prefixed with the database schema name if a schema name was given. -
POSITION
The column index, 1 based. First column 1, second column 2 etc. -
FIELD_OBJECT_TYPE
The object (non-primitive) type for a field. -
RESULT_SET_GETTER
The getter to get the column from a result set. -
SAMPLE_OBJECT
An instance of the object for the type map. -
ENUM_CLASS_NAME
The unqualified name of the enum type of the column. -
ENUM_PACKAGE
The package of the enum type of the column. -
ENUM_VALUE_CLASS_NAME
The unqualified class name of the value contained in enum type of the column. -
GENERATE_ENUM
Whether to generate an enum type for the column (nb: predefined enums can be defined which need not be generated). -
IS_ENUM
Whether this column is an enum.
-
-
Methodendetails
-
values
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.- Gibt zurück:
- ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
-
valueOf
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)- Parameter:
name
- Name der zurückzugebenden Enumerationskonstante.- Gibt zurück:
- Enumerationskonstante mit dem angegebenen Namen
- Löst aus:
IllegalArgumentException
- wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthältNullPointerException
- wenn das Argument nicht angegeben wird
-
getName
Returns the name of the referenced source element attribute.- Angegeben von:
getName
in SchnittstelleSourceAttributeName
- Gibt zurück:
- the name of the referenced source element attribute.
-
toString
- Setzt außer Kraft:
toString
in KlasseEnum<ColumnAttributeName>
-