Package io.ebean.typequery
Class TQPropertyBase<R>
- java.lang.Object
-
- io.ebean.typequery.TQProperty<R>
-
- io.ebean.typequery.TQPropertyBase<R>
-
- Type Parameters:
R- The type of the owning root bean
- Direct Known Subclasses:
PArray,PBaseValueEqual,PFile,PJson
public class TQPropertyBase<R> extends TQProperty<R>
Base scalar property.
-
-
Constructor Summary
Constructors Constructor Description TQPropertyBase(String name, R root)Construct with a property name and root instance.TQPropertyBase(String name, R root, String prefix)Construct with additional path prefix.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Rasc()Order by ascending on this property.Rdesc()Order by descending on this property.-
Methods inherited from class io.ebean.typequery.TQProperty
isNotNull, isNull, toString
-
-
-
-
Constructor Detail
-
TQPropertyBase
public TQPropertyBase(String name, R root)
Construct with a property name and root instance.- Parameters:
name- the name of the propertyroot- the root query bean instance
-
TQPropertyBase
public TQPropertyBase(String name, R root, String prefix)
Construct with additional path prefix.
-
-