Uses of Enum
jakarta.persistence.ParameterMode
Packages that use ParameterMode
Package
Description
Jakarta Persistence is the API for the management for persistence and object/relational mapping.
-
Uses of ParameterMode in jakarta.persistence
Subclasses with type arguments of type ParameterMode in jakarta.persistenceModifier and TypeClassDescriptionenumSpecifies the mode of a parameter of a stored procedure query.Methods in jakarta.persistence that return ParameterModeModifier and TypeMethodDescriptionstatic ParameterModeReturns 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 ParameterModeModifier and TypeMethodDescriptionStoredProcedureQuery.registerStoredProcedureParameter(int position, Class<?> type, ParameterMode mode) Register a positional parameter.StoredProcedureQuery.registerStoredProcedureParameter(String parameterName, Class<?> type, ParameterMode mode) Register a named parameter.