Query String Value
Basic query language. All these cases are mutually exclusive.
Types
Link copied to clipboard
Case enum for ContentQueryStringValue.
Link copied to clipboard
data class Contains(val string: String, val case: QueryStringValue.Case = Case.SENSITIVE) : QueryStringValue.ContentQueryStringValue
Content copied to clipboard
The tested field must contain the string.
Link copied to clipboard
interface ContentQueryStringValue : QueryStringValue, QueryStateEventValue
Content copied to clipboard
Interface to check String content.
Link copied to clipboard
data class Equals(val string: String, val case: QueryStringValue.Case = Case.SENSITIVE) : QueryStringValue.ContentQueryStringValue
Content copied to clipboard
The tested field must match the string.
Link copied to clipboard
The tested field has to be empty.
Link copied to clipboard
The tested field has to be not empty.
Link copied to clipboard
The tested field has to be not null.
Link copied to clipboard
The tested field has to be null.
Link copied to clipboard
No condition, i.e. there will be no test on the tested field.
Link copied to clipboard
data class NotContains(val string: String, val case: QueryStringValue.Case = Case.SENSITIVE) : QueryStringValue.ContentQueryStringValue
Content copied to clipboard
The tested field must not contain the string.