Package org.jooq
Interface Named
-
- All Superinterfaces:
QueryPart
,java.io.Serializable
- All Known Subinterfaces:
AggregateFilterStep<T>
,AggregateFunction<T>
,ArrayAggOrderByStep<T>
,CaseConditionStep<T>
,CaseWhenStep<V,T>
,Catalog
,CommonTableExpression<R>
,Constraint
,ConstraintFinalStep
,ConstraintForeignKeyOnStep
,ConstraintTypeStep
,Field<T>
,FieldOrConstraint
,GroupConcatOrderByStep
,GroupConcatSeparatorStep
,Index
,Label
,Package
,Param<T>
,Parameter<T>
,Routine<T>
,Schema
,SelectField<T>
,Sequence<T>
,Table<R>
,TableField<R,T>
,TableOnConditionStep<R>
,TableOptionalOnStep<R>
,UDT<R>
,UDTField<R,T>
,Variable<T>
,WindowBeforeOverStep<T>
,WindowExcludeStep<T>
,WindowFinalStep<T>
,WindowOrderByStep<T>
,WindowPartitionByStep<T>
,WindowRowsStep<T>
- All Known Implementing Classes:
AbstractRoutine
,CatalogImpl
,ConvertDateTime
,CustomField
,CustomTable
,PackageImpl
,SchemaImpl
,SequenceImpl
,TableImpl
,UDTImpl
public interface Named extends QueryPart
A common base type for all qualifiable, named objects.Instances of this type cannot be created directly, only of its subtypes.
- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getComment()
The comment on this object.java.lang.String
getName()
The unqualified name of this object.Name
getQualifiedName()
The qualified name of this object.Name
getUnqualifiedName()
The unqualified name of this object.
-
-
-
Method Detail
-
getName
java.lang.String getName()
The unqualified name of this object.
-
getQualifiedName
Name getQualifiedName()
The qualified name of this object.
-
getUnqualifiedName
Name getUnqualifiedName()
The unqualified name of this object.
-
getComment
java.lang.String getComment()
The comment on this object.
-
-