SingleCondition | 
ISingleConditionBuilder.build() | 
 Creates a new single condition with the current configuration. 
 | 
default SingleCondition | 
ISingleConditionBuilder.contains(String lhs,
        String rhs) | 
 Sets up the condition so that the given left hand side must contain the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.doesNotEndWith(String lhs,
              String rhs) | 
 Sets up the condition so that the given left hand side must not end with the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.doesNotMatchRegExp(String lhs,
                  String rhs) | 
 Sets up the condition so that the given left hand side must not match the given right hand side as a regular
 expression. 
 | 
default SingleCondition | 
ISingleConditionBuilder.doesNotStartWith(String lhs,
                String rhs) | 
 Sets up the condition so that the given left hand side must not start with the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.endsWith(String lhs,
        String rhs) | 
 Sets up the condition so that the given left hand side must end with the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.equalTo(String lhs,
       String rhs) | 
 Sets up the condition so that the given left hand side must equal the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.greaterThan(String lhs,
           String rhs) | 
 Sets up the condition so that the given left hand side must be greater than the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.greaterThanOrEqual(String lhs,
                  String rhs) | 
 Sets up the condition so that the given left hand side must be greater than or equal to the given right hand
 side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.isEmpty(String value) | 
 Sets up the condition so that the given value must be empty. 
 | 
default SingleCondition | 
ISingleConditionBuilder.isNotEmpty(String value) | 
 Sets up the condition so that the given value must not be empty. 
 | 
default SingleCondition | 
ISingleConditionBuilder.lessThan(String lhs,
        String rhs) | 
 Sets up the condition so that the given left hand side must be less than the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.lessThanOrEqual(String lhs,
               String rhs) | 
 Sets up the condition so that the given left hand side must be less than or equal to the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.matchesRegExp(String lhs,
             String rhs) | 
 Sets up the condition so that the given left hand side must match the given right hand side as a regular
 expression. 
 | 
default SingleCondition | 
ISingleConditionBuilder.notEqualTo(String lhs,
          String rhs) | 
 Sets up the condition so that the given left hand side must not equal the given right hand side. 
 | 
default SingleCondition | 
ISingleConditionBuilder.startsWith(String lhs,
          String rhs) | 
 Sets up the condition so that the given left hand side must start with the given right hand side. 
 |