public interface HttpReqParam
| Modifier and Type | Method and Description |
|---|---|
String[] |
getAllValues()
If this parameter is mulitple this method will return all of the values
that were sent to the server under it´s name.
|
String |
getName()
The name of this parameter.
|
String |
getValue()
Gets the first value sent to the server with the name of this parameter.
|
boolean |
isEmpty()
Determines if the first value sent to the server is an empty string.
|
boolean |
isMultiple()
Determines when ever this parameter has multiple values, this is if the
client sent several values with the name of this parameter.
|
boolean |
isSingle()
Determines when ever this parameter has a single value.
|
HttpReqParam[] |
separate()
This method will separate this object into several parameters one for each
value this parameter holds.
|
String getName()
boolean isSingle()
boolean isMultiple()
String getValue()
String[] getAllValues()
boolean isEmpty()
HttpReqParam[] separate()
Copyright © 2015–2017 Bridje Framework. All rights reserved.