Uses of Class
jakarta.persistence.ParameterMode
-
Packages that use ParameterMode Package Description jakarta.persistence Jakarta Persistence is the API for the management for persistence and object/relational mapping. -
-
Uses of ParameterMode in jakarta.persistence
Methods in jakarta.persistence that return ParameterMode Modifier and Type Method Description ParameterMode
mode()
Specifies whether the parameter is an IN, INOUT, OUT, or REF_CURSOR parameter.static ParameterMode
ParameterMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static ParameterMode[]
ParameterMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in jakarta.persistence with parameters of type ParameterMode Modifier and Type Method Description StoredProcedureQuery
StoredProcedureQuery. registerStoredProcedureParameter(int position, Class type, ParameterMode mode)
Register a positional parameter.StoredProcedureQuery
StoredProcedureQuery. registerStoredProcedureParameter(String parameterName, Class type, ParameterMode mode)
Register a named parameter.
-