| Interface | Description |
|---|---|
| ParseCondition |
A
ParseCondition is can be fullfilled or not. only if the condition
is fullfilled the result will be parsed. |
| Class | Description |
|---|---|
| AndCondition |
Concatinates two
ParseCondition by a AND condition. |
| BetweenCondition |
This condition is fullfilled, if the http status code is between the lower
bound (greater than or equal) and the upper bound (less than or equal).
|
| EqualCondition |
Determines if the httpStatusCode is equal / the same
EqualCondition.setEqualValue(int) |
| LessThanCondition |
Determines if the httpStatusCode is less then the value, set by
LessThanCondition.setLessThanValue(int) |
| LessThanEqualCondition |
Determines if the httpStatusCode is less then or equal the value, set by
LessThanEqualCondition.setLessOrEqualValue(int) |
| MoreThanCondition |
Determines if the httpStatusCode is more then the value, set by calling
MoreThanCondition.setMoreThanValue(int) |
| MoreThanEqualCondition |
Determines if the httpStatusCode is more than or equal the value, set by
MoreThanEqualCondition.setMoreOrEqualValue(int) |
| NeverCondition |
This condition is never full filled.
|
| NotCondition |
Negates a ParseCondition
|
| OrCondition |
Concatinates two
ParseCondition by a OR condition. |
Copyright © 2015 Hannes Dorfmann. All rights reserved.