- Type Parameters:
T
- The property type.
public static interface Query.Property<T>
Type safe query bean properties and expressions (marker interface).
Implemented by query bean properties and expressions based on those properties.
The base type determines which StdOperators
can be used on the property.
-
Method Summary
Modifier and TypeMethodDescriptionstatic <T> Query.Property
<T> Return a property given the expression.toString()
Return the property in string expression form.
-
Method Details
-
of
Return a property given the expression. -
toString
String toString()Return the property in string expression form.This is a path to a database column (like "name" or "billingAddress.city") or a function wrapping a path (like lower(name), concat(name, '-', billingAddress.city)
-