public class JpaParameter extends Object
Constructor and Description |
---|
JpaParameter()
Default constructor.
|
JpaParameter(Object value,
String expression)
Instantiates a new Jpa Parameter without a name.
|
JpaParameter(String name,
Object value,
String expression)
Instantiates a new Jpa Parameter.
|
Modifier and Type | Method and Description |
---|---|
String |
getExpression() |
String |
getName() |
Expression |
getProjectionExpression() |
Expression |
getSpelExpression() |
Object |
getValue() |
void |
setExpression(String expression) |
void |
setName(String name) |
void |
setValue(Object value) |
String |
toString() |
public JpaParameter()
public JpaParameter(String name, Object value, String expression)
name
- Name of the JPA parameter, must not be null or emptyvalue
- If null, the expression property must be setexpression
- If null, the value property must be setpublic String getName()
public void setName(String name)
public Object getValue()
public void setValue(Object value)
public String getExpression()
public Expression getSpelExpression()
public Expression getProjectionExpression()
public void setExpression(String expression)