|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<OpenSearchParameter.OpenSearchParams> org.apache.wink.common.model.opensearch.OpenSearchParameter.OpenSearchParams
public static enum OpenSearchParameter.OpenSearchParams
OpenSearch 1.1 parameters
Enum Constant Summary | |
---|---|
count
Replaced with the number of search results per page desired by the search client. |
|
inputEncoding
Replaced with a string that indicates that the search client is performing the search request encoded with the specified character encoding. |
|
language
Replaced with a string that indicates that the search client desires search results in the specified language. |
|
outputEncoding
Replaced with a string that indicates that the search client desires a search response encoding with the specified character encoding. |
|
searchTerms
Replaced with the keyword or keywords desired by the search client. |
|
startPage
Replaced with the page number of the set of search results desired by the search client. |
Method Summary | |
---|---|
static OpenSearchParameter.OpenSearchParams |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OpenSearchParameter.OpenSearchParams[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final OpenSearchParameter.OpenSearchParams searchTerms
Replaced with the keyword or keywords desired by the search client. Restrictions: The value must be URL-encoded.
public static final OpenSearchParameter.OpenSearchParams count
Replaced with the number of search results per page desired by the search client.
public static final OpenSearchParameter.OpenSearchParams startPage
Replaced with the page number of the set of search results desired by the search client. Restrictions: The value must be an integer.
public static final OpenSearchParameter.OpenSearchParams language
Replaced with a string that indicates that the search client desires search results in the specified language.
public static final OpenSearchParameter.OpenSearchParams inputEncoding
Replaced with a string that indicates that the search client is performing the search request encoded with the specified character encoding.
public static final OpenSearchParameter.OpenSearchParams outputEncoding
Replaced with a string that indicates that the search client desires a search response encoding with the specified character encoding.
Method Detail |
---|
public static final OpenSearchParameter.OpenSearchParams[] values()
for(OpenSearchParameter.OpenSearchParams c : OpenSearchParameter.OpenSearchParams.values()) System.out.println(c);
public static OpenSearchParameter.OpenSearchParams valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |