Interface ProjectionParameter<T>

Type Parameters:
T - type of the parameter

public interface ProjectionParameter<T>
Projection expression parameter.
  • Method Summary

    Modifier and Type
    Method
    Description
    createInteger(int value)
    Create projection expression parameter with Integer value.
    Projection expression parameter type.
    Projection expression parameter value.
  • Method Details

    • createInteger

      static ProjectionParameter<Integer> createInteger(int value)
      Create projection expression parameter with Integer value.
      Parameters:
      value - parameter value
      Returns:
      new instance of ProjectionParameter with Integer value.
    • value

      T value()
      Projection expression parameter value.
      Returns:
      the parameter value
    • type

      Class<T> type()
      Projection expression parameter type.
      Returns:
      the parameter type