public enum QueryParameterStyle extends Enum<QueryParameterStyle>
| Enum Constant and Description |
|---|
DEEPOBJECT |
FORM |
PIPEDELIMITED |
SPACEDELIMITED |
| Modifier and Type | Method and Description |
|---|---|
StyleParameterDeserializer |
getDeserializer() |
static boolean |
is(String styleStr,
QueryParameterStyle style) |
static QueryParameterStyle |
of(String styleStr) |
static QueryParameterStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryParameterStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryParameterStyle FORM
public static final QueryParameterStyle SPACEDELIMITED
public static final QueryParameterStyle PIPEDELIMITED
public static final QueryParameterStyle DEEPOBJECT
public static QueryParameterStyle[] values()
for (QueryParameterStyle c : QueryParameterStyle.values()) System.out.println(c);
public static QueryParameterStyle valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static QueryParameterStyle of(String styleStr)
public static boolean is(String styleStr, QueryParameterStyle style)
public StyleParameterDeserializer getDeserializer()
Copyright © 2020. All rights reserved.