T - The type of the final builder.public interface StringProperty<T extends QBuilder<T>> extends EquitableProperty<T,String>, ListableProperty<T,String>
String values.| Modifier and Type | Method and Description |
|---|---|
Condition<T> |
lexicallyAfter(String value)
Mandates that the value of the field must occur after the provided value
when sorted lexicographically.
|
Condition<T> |
lexicallyBefore(String value)
Mandates that the value of the field must occur before the provided value
when sorted lexicographically.
|
Condition<T> |
lexicallyNotAfter(String value)
Mandates that the value of the field must be equal to or occur before the provided value
when sorted lexicographically.
|
Condition<T> |
lexicallyNotBefore(String value)
Mandates that the value of the field must be equal to or occur after the provided value
when sorted lexicographically.
|
Condition<T> |
pattern(String pattern)
Mandates that the value of the field must match the regular expression provided
in the form of a string pattern.
|
eq, nedoesNotExist, existsin, in, nin, ninCondition<T> lexicallyAfter(String value)
value - The string that the value must occur after.Condition<T> lexicallyBefore(String value)
value - The string that the value must occur before.Condition<T> lexicallyNotAfter(String value)
value - The string that the value must occur before or be equal to.Condition<T> lexicallyNotBefore(String value)
value - The string that the value must occur after or be equal to.Condition<T> pattern(String pattern)
pattern - The regular expression to used, expressed as a string in the format expected
by whichever backend visitor you plan to use to build the query.Copyright © 2017. All rights reserved.