Package org.hibernate.query.criteria
Interface JpaCastTarget<T>
- All Known Implementing Classes:
SqmCastTarget
The target for cast.
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescription@Nullable Long
Returns the specified length of the cast target ornull
.@Nullable Integer
Returns the specified precision of the cast target ornull
.@Nullable Integer
getScale()
Returns the specified scale of the cast target ornull
.getType()
Returns the JPA type for this cast target.
-
Method Details
-
getType
Returns the JPA type for this cast target. -
getLength
@Nullable Long getLength()Returns the specified length of the cast target ornull
. -
getPrecision
@Nullable Integer getPrecision()Returns the specified precision of the cast target ornull
. -
getScale
@Nullable Integer getScale()Returns the specified scale of the cast target ornull
.
-