Class AbstractSqmPathSource<J>
- java.lang.Object
-
- org.hibernate.metamodel.model.domain.internal.AbstractSqmPathSource<J>
-
- All Implemented Interfaces:
Bindable<J>
,BindableType<J>
,SqmExpressible<J>
,SqmPathSource<J>
,SqmExpressibleAccessor<J>
- Direct Known Subclasses:
AbstractDiscriminatorSqmPathSource
,AnyDiscriminatorSqmPathSource
,AnyMappingSqmPathSource
,BasicSqmPathSource
,EmbeddedSqmPathSource
,EntitySqmPathSource
,MappedSuperclassSqmPathSource
,NonAggregatedCompositeSqmPathSource
public abstract class AbstractSqmPathSource<J> extends Object implements SqmPathSource<J>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface jakarta.persistence.metamodel.Bindable
Bindable.BindableType
-
-
Field Summary
Fields Modifier and Type Field Description protected SqmPathSource<J>
pathModel
-
Constructor Summary
Constructors Constructor Description AbstractSqmPathSource(String localPathName, SqmPathSource<J> pathModel, DomainType<J> domainType, Bindable.BindableType jpaBindableType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Class<J>
getBindableJavaType()
The expected Java typeBindable.BindableType
getBindableType()
JavaType<J>
getExpressibleJavaType()
The Java type descriptor for this expressibleString
getPathName()
The name of this thing.DomainType<J>
getSqmPathType()
The type of path this source creates.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.hibernate.query.sqm.SqmExpressible
getRelationalJavaType, getTypeName, isInstance, resolveExpressible
-
Methods inherited from interface org.hibernate.query.sqm.tree.SqmExpressibleAccessor
getNodeJavaType
-
Methods inherited from interface org.hibernate.query.sqm.SqmPathSource
createSqmPath, findSubPathSource, findSubPathSource, getExpressible, getIntermediatePathSource, getSqmType, getSubPathSource, getSubPathSource, isGeneric
-
-
-
-
Field Detail
-
pathModel
protected final SqmPathSource<J> pathModel
-
-
Constructor Detail
-
AbstractSqmPathSource
public AbstractSqmPathSource(String localPathName, SqmPathSource<J> pathModel, DomainType<J> domainType, Bindable.BindableType jpaBindableType)
-
-
Method Detail
-
getBindableJavaType
public Class<J> getBindableJavaType()
Description copied from interface:BindableType
The expected Java type- Specified by:
getBindableJavaType
in interfaceBindable<J>
- Specified by:
getBindableJavaType
in interfaceBindableType<J>
-
getPathName
public String getPathName()
Description copied from interface:SqmPathSource
The name of this thing.- Specified by:
getPathName
in interfaceSqmPathSource<J>
-
getSqmPathType
public DomainType<J> getSqmPathType()
Description copied from interface:SqmPathSource
The type of path this source creates.- Specified by:
getSqmPathType
in interfaceSqmPathSource<J>
-
getBindableType
public Bindable.BindableType getBindableType()
- Specified by:
getBindableType
in interfaceBindable<J>
-
getExpressibleJavaType
public JavaType<J> getExpressibleJavaType()
Description copied from interface:SqmExpressible
The Java type descriptor for this expressible- Specified by:
getExpressibleJavaType
in interfaceSqmExpressible<J>
-
-