java.lang.Object
org.jooq.meta.AbstractDefinition
org.jooq.meta.AbstractContainerElementDefinition<UDTDefinition>
org.jooq.meta.AbstractTypedElementDefinition<UDTDefinition>
org.jooq.meta.DefaultAttributeDefinition
- Alle implementierten Schnittstellen:
AttributeDefinition,ContainerElementDefinition<UDTDefinition>,Definition,PositionedDefinition,TypedElementDefinition<UDTDefinition>
public class DefaultAttributeDefinition
extends AbstractTypedElementDefinition<UDTDefinition>
implements AttributeDefinition
A base implementation for column definitions.
- Autor:
- Lukas Eder
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungDefaultAttributeDefinition(UDTDefinition udt, String name, int position, DataTypeDefinition type) DefaultAttributeDefinition(UDTDefinition udt, String name, int position, DataTypeDefinition type, String comment) -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungintThe object's 1-based position in the parent.Von Klasse geerbte Methoden org.jooq.meta.AbstractTypedElementDefinition
customType, getDataType, getDefinedType, getDomain, getType, getType, mapDefinedTypeVon Klasse geerbte Methoden org.jooq.meta.AbstractContainerElementDefinition
getContainer, getDefinitionPathVon Klasse geerbte Methoden org.jooq.meta.AbstractDefinition
create, create, equals, getCatalog, getComment, getConnection, getDatabase, getDialect, getInputName, getName, getOutputName, getOverload, getPackage, getPartiallyQualifiedNames, getQualifiedInputName, getQualifiedInputNamePart, getQualifiedName, getQualifiedNamePart, getQualifiedOutputName, getQualifiedOutputNamePart, getSchema, getSource, hashCode, toStringVon Klasse geerbte Methoden java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitVon Schnittstelle geerbte Methoden org.jooq.meta.ContainerElementDefinition
getContainerVon Schnittstelle geerbte Methoden org.jooq.meta.Definition
getCatalog, getComment, getDatabase, getDefinitionPath, getInputName, getName, getOutputName, getOverload, getPackage, getPartiallyQualifiedNames, getQualifiedInputName, getQualifiedInputNamePart, getQualifiedName, getQualifiedNamePart, getQualifiedOutputName, getQualifiedOutputNamePart, getSchema, getSource, isSyntheticVon Schnittstelle geerbte Methoden org.jooq.meta.TypedElementDefinition
getDefinedType, getDomain, getType, getType
-
Konstruktordetails
-
DefaultAttributeDefinition
public DefaultAttributeDefinition(UDTDefinition udt, String name, int position, DataTypeDefinition type) -
DefaultAttributeDefinition
public DefaultAttributeDefinition(UDTDefinition udt, String name, int position, DataTypeDefinition type, String comment)
-
-
Methodendetails
-
getPosition
public int getPosition()Beschreibung aus Schnittstelle kopiert:PositionedDefinitionThe object's 1-based position in the parent.[#17434] While in most RDBMS, this value is 1-based and a consecutive ordinal, there may be cases where a positional value is skipped, either by what's reported by the RDBMS's dictionary views, or because the definition is filtered by jOOQ-meta. Users shouldn't rely on the positions reflecting the actually generated column/attribute/etc. position.
- Angegeben von:
getPositionin SchnittstellePositionedDefinition
-