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 withIntegervalue.type()Projection expression parameter type.value()Projection expression parameter value.
-
Method Details
-
createInteger
Create projection expression parameter withIntegervalue.- Parameters:
value- parameter value- Returns:
- new instance of
ProjectionParameterwithIntegervalue.
-
value
T value()Projection expression parameter value.- Returns:
- the parameter value
-
type
Projection expression parameter type.- Returns:
- the parameter type
-