Class JsonArrayViaElementArgumentReturnTypeResolver
java.lang.Object
org.hibernate.dialect.function.array.JsonArrayViaElementArgumentReturnTypeResolver
- All Implemented Interfaces:
FunctionReturnTypeResolver
public class JsonArrayViaElementArgumentReturnTypeResolver
extends Object
implements FunctionReturnTypeResolver
A
FunctionReturnTypeResolver that resolves a JSON encoded array type based on the arguments,
which are supposed to be of the element type. The inferred type and implied type have precedence though.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionresolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments) Resolve the return type for a function given its context-implied type and the arguments to this call.resolveFunctionReturnType(ReturnableType<?> impliedType, @Nullable SqmToSqlAstConverter converter, List<? extends SqmTypedNode<?>> arguments, TypeConfiguration typeConfiguration) Resolve the return type for a function given its context-implied type and the arguments to this call.static <T> BasicType<?> resolveJsonArrayType(DomainType<T> elementType, TypeConfiguration typeConfiguration) Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface FunctionReturnTypeResolver
getReturnType, resolveFunctionReturnType
-
Field Details
-
INSTANCE
-
-
Method Details
-
resolveFunctionReturnType
public ReturnableType<?> resolveFunctionReturnType(ReturnableType<?> impliedType, @Nullable SqmToSqlAstConverter converter, List<? extends SqmTypedNode<?>> arguments, TypeConfiguration typeConfiguration) Description copied from interface:FunctionReturnTypeResolverResolve the return type for a function given its context-implied type and the arguments to this call.The context-implied type is the type implied by where the function occurs in the query. E.g., for an equality predicate (`something = some_function`) the implied type of the return from `some_function` would be defined by the type of `some_function`.
- Specified by:
resolveFunctionReturnTypein interfaceFunctionReturnTypeResolver- Returns:
- The resolved type.
-
resolveFunctionReturnType
public BasicValuedMapping resolveFunctionReturnType(Supplier<BasicValuedMapping> impliedTypeAccess, List<? extends SqlAstNode> arguments) Description copied from interface:FunctionReturnTypeResolverResolve the return type for a function given its context-implied type and the arguments to this call.The context-implied type is the type implied by where the function occurs in the query. E.g., for an equality predicate (`something = some_function`) the implied type of the return from `some_function` would be defined by the type of `some_function`.
- Specified by:
resolveFunctionReturnTypein interfaceFunctionReturnTypeResolver- Returns:
- The resolved type.
-
resolveJsonArrayType
public static <T> BasicType<?> resolveJsonArrayType(DomainType<T> elementType, TypeConfiguration typeConfiguration)
-