Package org.hibernate.query.sqm
Interface SqmExpressible<J>
-
- All Superinterfaces:
BindableType<J>
- All Known Subinterfaces:
AdjustableBasicType<J>
,AnyMappingDomainType<J>
,BagPersistentAttribute<D,E>
,BasicDomainType<J>
,BasicType<T>
,CompositeSqmPathSource<J>
,ConvertedBasicType<J>
,DomainType<J>
,EmbeddableDomainType<J>
,EmbeddedDomainType<J>
,EntityDomainType<J>
,IdentifiableDomainType<J>
,ListPersistentAttribute<D,E>
,ManagedDomainType<J>
,MappedSuperclassDomainType<J>
,MapPersistentAttribute<D,K,V>
,PluralPersistentAttribute<D,C,E>
,ReturnableType<T>
,SetPersistentAttribute<D,E>
,SimpleDomainType<J>
,SingularPersistentAttribute<D,J>
,SqmDynamicInstantiationTarget<T>
,SqmPathSource<J>
,TupleType<J>
- All Known Implementing Classes:
AbstractDomainType
,AbstractIdentifiableType
,AbstractManagedType
,AbstractPluralAttribute
,AbstractSingleColumnStandardBasicType
,AbstractSqmPathSource
,AbstractStandardBasicType
,AnyMappingDomainTypeImpl
,AnyMappingSqmPathSource
,ArrayTupleType
,AttributeConverterTypeAdapter
,BasicSqmPathSource
,BasicTypeImpl
,BasicTypeImpl
,ConvertedBasicTypeImpl
,CustomType
,DbTimestampType
,DiscriminatorSqmPathSource
,DiscriminatorType
,EmbeddableTypeImpl
,EmbeddedSqmPathSource
,EntitySqmPathSource
,EntityTypeImpl
,ImmutableConvertedBasicTypeImpl
,ImmutableNamedBasicTypeImpl
,JavaObjectType
,MappedSuperclassSqmPathSource
,MappedSuperclassTypeImpl
,NamedBasicTypeImpl
,NonAggregatedCompositeSqmPathSource
,NullSqmExpressible
,NullType
,PrimitiveBasicTypeImpl
,SerializableToBlobType
,SerializableType
,SetAttributeImpl
,SingularAttributeImpl
,SingularAttributeImpl.Identifier
,SingularAttributeImpl.Version
,SqmBasicValuedSimplePath
,SqmEmbeddedValuedSimplePath
,SqmEnumLiteral
,SqmFieldLiteral
,SqmJpaCompoundSelection
,SqmMapEntryReference
,SqmPolymorphicRootDescriptor
,StandardBasicTypeTemplate
,ValueConverterTypeAdapter
public interface SqmExpressible<J> extends BindableType<J>
Anything in the application domain model that can be used in an SQM query as an expression- See Also:
SqmExpression.getNodeType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description JavaType<J>
getExpressibleJavaType()
The Java type descriptor for this expressibledefault SqmExpressible<J>
resolveExpressible(SessionFactoryImplementor sessionFactory)
Resolve this parameter type to the corresponding SqmExpressible-
Methods inherited from interface org.hibernate.query.BindableType
getBindableJavaType
-
-
-
-
Method Detail
-
getExpressibleJavaType
JavaType<J> getExpressibleJavaType()
The Java type descriptor for this expressible
-
resolveExpressible
default SqmExpressible<J> resolveExpressible(SessionFactoryImplementor sessionFactory)
Description copied from interface:BindableType
Resolve this parameter type to the corresponding SqmExpressible- Specified by:
resolveExpressible
in interfaceBindableType<J>
-
-