- whereContains(String, String) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint for finding string values that contain a provided string.
- whereDoesNotExist(String) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint for finding objects that do not contain a given key.
- whereEndsWith(String, String) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint for finding string values that end with a provided string.
- whereEqualTo(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be equal to the
provided value.
- whereExists(String) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint for finding objects that contain the given key.
- whereGreaterThan(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be greater than the
provided value.
- whereGreaterThanOrEqualTo(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be greater than or
equal to the provided value.
- whereLessThan(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be less than the
provided value.
- whereLessThanOrEqualTo(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be less than or equal
to the provided value.
- whereNotEqualTo(String, Object) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint to the query that requires a particular key's value to be not equal to the
provided value.
- whereStartsWith(String, String) - Method in class com.eyro.mesosfer.MesosferQuery
-
Add a constraint for finding string values that start with a provided string.