public enum ParameterStyle extends Enum<ParameterStyle>
Enum Constant and Description |
---|
DEEPOBJECT |
DEFAULT |
FORM |
LABEL |
MATRIX |
PIPEDELIMITED |
SIMPLE |
SPACEDELIMITED |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static ParameterStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterStyle DEFAULT
public static final ParameterStyle MATRIX
public static final ParameterStyle LABEL
public static final ParameterStyle FORM
public static final ParameterStyle SPACEDELIMITED
public static final ParameterStyle PIPEDELIMITED
public static final ParameterStyle DEEPOBJECT
public static final ParameterStyle SIMPLE
public static ParameterStyle[] values()
for (ParameterStyle c : ParameterStyle.values()) System.out.println(c);
public static ParameterStyle 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 String toString()
toString
in class Enum<ParameterStyle>
Copyright © 2022. All rights reserved.