Class PropertyFieldImpl<A>
java.lang.Object
org.opencastproject.assetmanager.impl.query.PropertyFieldImpl<A>
- All Implemented Interfaces:
Field<A>,PropertyField<A>,EntityPaths
@ParametersAreNonnullByDefault
public class PropertyFieldImpl<A>
extends Object
implements PropertyField<A>, EntityPaths
-
Field Summary
Fields inherited from interface org.opencastproject.assetmanager.impl.persistence.EntityPaths
$NO_ENTITY, $Q_PROPERTY, $Q_SNAPSHOT, Q_ASSET, Q_PROPERTY, Q_SNAPSHOT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionasc()Create an ascending order specifier for the field.desc()Create a descending order specifier for the field.Create a predicate that holds true if the field's value and constant valuerightare equal.eq(PropertyField<A> right) Create a predicate that holds true if the field's value and the value of property fieldrightare equal.exists()Create a predicate that holds true if the field exists.Create a predicate that holds true if the field's value is greater than constant valuerightor equal to it.ge(PropertyField<A> right) Create a predicate that holds true if the field's value is greater than the value of property fieldrightor equal to it.com.mysema.query.types.Path<?> getPath(QPropertyDto dto) Create a predicate that holds true if the field's value is strictly greater than constant valueright.gt(PropertyField<A> right) Create a predicate that holds true if the field's value is strictly greater than the value of property fieldright.Create a predicate that holds true if the field's value is less than constant valuerightor equal to it.le(PropertyField<A> right) Create a predicate that holds true if the field's value is less than the value of property fieldrightor equal to it.Create a predicate that holds true if the field's value is strictly less than constant valueright.lt(PropertyField<A> right) Create a predicate that holds true if the field's value is strictly less than the value of property fieldright.name()Create a predicate that holds true if the field does not exist.target()
-
Constructor Details
-
PropertyFieldImpl
-
-
Method Details
-
target
- Specified by:
targetin interfacePropertyField<A>
-
name
- Specified by:
namein interfacePropertyField<A>
-
mk
- Specified by:
mkin interfacePropertyField<A>
-
eq
Description copied from interface:FieldCreate a predicate that holds true if the field's value and constant valuerightare equal. -
eq
Description copied from interface:FieldCreate a predicate that holds true if the field's value and the value of property fieldrightare equal. -
lt
Description copied from interface:FieldCreate a predicate that holds true if the field's value is strictly less than constant valueright. -
lt
Description copied from interface:FieldCreate a predicate that holds true if the field's value is strictly less than the value of property fieldright. -
le
Description copied from interface:FieldCreate a predicate that holds true if the field's value is less than constant valuerightor equal to it. -
le
Description copied from interface:FieldCreate a predicate that holds true if the field's value is less than the value of property fieldrightor equal to it. -
gt
Description copied from interface:FieldCreate a predicate that holds true if the field's value is strictly greater than constant valueright. -
gt
Description copied from interface:FieldCreate a predicate that holds true if the field's value is strictly greater than the value of property fieldright. -
ge
Description copied from interface:FieldCreate a predicate that holds true if the field's value is greater than constant valuerightor equal to it. -
ge
Description copied from interface:FieldCreate a predicate that holds true if the field's value is greater than the value of property fieldrightor equal to it. -
exists
Description copied from interface:FieldCreate a predicate that holds true if the field exists. -
notExists
Description copied from interface:FieldCreate a predicate that holds true if the field does not exist. -
desc
Description copied from interface:FieldCreate a descending order specifier for the field. -
asc
Description copied from interface:FieldCreate an ascending order specifier for the field. -
getPath
-