Uses of Interface
org.opencastproject.assetmanager.api.query.PropertyField
-
Packages that use PropertyField Package Description org.opencastproject.assetmanager.api.fn org.opencastproject.assetmanager.api.query Implementations are required to be immutable. -
-
Uses of PropertyField in org.opencastproject.assetmanager.api.fn
Methods in org.opencastproject.assetmanager.api.fn with parameters of type PropertyField Modifier and Type Method Description static <A> PropertyProperties. mkProperty(PropertyField<A> f, Snapshot e, A value)Create a property.static <A> PropertyProperties. mkProperty(PropertyField<A> f, org.opencastproject.mediapackage.MediaPackage mp, A value)Create a property. -
Uses of PropertyField in org.opencastproject.assetmanager.api.query
Methods in org.opencastproject.assetmanager.api.query that return PropertyField Modifier and Type Method Description protected PropertyField<Boolean>PropertySchema. booleanProp(String name)Create a property field for Booleans.protected PropertyField<Date>PropertySchema. dateProp(String name)Create a property field for Dates.protected PropertyField<Long>PropertySchema. longProp(String name)Create a property field for Longs.protected <A> PropertyField<A>PropertySchema. prop(Value.ValueType<A> ev, String name)Generic property field constructor.<A> PropertyField<A>AQueryBuilder. property(Value.ValueType<A> ev, String namespace, String name)Create a field to query properties.<A> PropertyField<A>AQueryBuilder. property(Value.ValueType<A> ev, PropertyName fqn)protected PropertyField<String>PropertySchema. stringProp(String name)Create a property field for Strings.protected PropertyField<Version>PropertySchema. versionProp(String name)Create a property field for Versions.Methods in org.opencastproject.assetmanager.api.query with parameters of type PropertyField Modifier and Type Method Description PredicateField. eq(PropertyField<A> right)Create a predicate that holds true if the field's value and the value of property fieldrightare equal.PredicateField. 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.PredicateField. gt(PropertyField<A> right)Create a predicate that holds true if the field's value is strictly greater than the value of property fieldright.PredicateField. 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.PredicateField. lt(PropertyField<A> right)Create a predicate that holds true if the field's value is strictly less than the value of property fieldright.
-