Package io.helidon.data.codegen.query
Interface ProjectionParameter<T>
- Type Parameters:
T
- type of the parameter
public interface ProjectionParameter<T>
Projection expression parameter.
-
Method Summary
Modifier and TypeMethodDescriptionstatic ProjectionParameter
<Integer> createInteger
(int value) Create projection expression parameter withInteger
value.type()
Projection expression parameter type.value()
Projection expression parameter value.
-
Method Details
-
createInteger
Create projection expression parameter withInteger
value.- Parameters:
value
- parameter value- Returns:
- new instance of
ProjectionParameter
withInteger
value.
-
value
T value()Projection expression parameter value.- Returns:
- the parameter value
-
type
Projection expression parameter type.- Returns:
- the parameter type
-