| Package | Description |
|---|---|
| com.hannesdorfmann.httpkit.parser.condition | |
| com.hannesdorfmann.httpkit.request |
| Modifier and Type | Class and Description |
|---|---|
class |
AndCondition
Concatinates two
ParseCondition by a AND condition. |
class |
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).
|
class |
EqualCondition
Determines if the httpStatusCode is equal / the same
EqualCondition.setEqualValue(int) |
class |
LessThanCondition
Determines if the httpStatusCode is less then the value, set by
LessThanCondition.setLessThanValue(int) |
class |
LessThanEqualCondition
Determines if the httpStatusCode is less then or equal the value, set by
LessThanEqualCondition.setLessOrEqualValue(int) |
class |
MoreThanCondition
Determines if the httpStatusCode is more then the value, set by calling
MoreThanCondition.setMoreThanValue(int) |
class |
MoreThanEqualCondition
Determines if the httpStatusCode is more than or equal the value, set by
MoreThanEqualCondition.setMoreOrEqualValue(int) |
class |
NeverCondition
This condition is never full filled.
|
class |
NotCondition
Negates a ParseCondition
|
class |
OrCondition
Concatinates two
ParseCondition by a OR condition. |
| Modifier and Type | Method and Description |
|---|---|
ParseCondition |
NotCondition.getConditionToNegate() |
ParseCondition |
OrCondition.getFirst() |
ParseCondition |
AndCondition.getFirst() |
ParseCondition |
OrCondition.getSecond() |
ParseCondition |
AndCondition.getSecond() |
| Modifier and Type | Method and Description |
|---|---|
NotCondition |
NotCondition.setConditionToNegate(ParseCondition condition) |
OrCondition |
OrCondition.setFirst(ParseCondition first) |
AndCondition |
AndCondition.setFirst(ParseCondition first) |
OrCondition |
OrCondition.setSecond(ParseCondition second) |
AndCondition |
AndCondition.setSecond(ParseCondition second) |
| Constructor and Description |
|---|
AndCondition(ParseCondition first,
ParseCondition second) |
NotCondition(ParseCondition conditionToNegate) |
OrCondition(ParseCondition first,
ParseCondition second) |
| Modifier and Type | Method and Description |
|---|---|
ParseCondition |
HttpRequest.getParseCondition() |
ParseCondition |
AbstractHttpRequest.getParseCondition() |
| Modifier and Type | Method and Description |
|---|---|
void |
HttpRequest.setParseCondition(ParseCondition condition)
Set a
ParseCondition. |
void |
AbstractHttpRequest.setParseCondition(ParseCondition condition) |
Copyright © 2015 Hannes Dorfmann. All rights reserved.