public enum ResponseMode extends Enum<ResponseMode>
| Modifier and Type | Method and Description |
|---|---|
static Optional<ResponseMode> |
fromString(String string) |
String |
toString() |
static ResponseMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseMode RAW
public static final ResponseMode DOCUMENT
public static ResponseMode[] values()
for (ResponseMode c : ResponseMode.values()) System.out.println(c);
public static ResponseMode 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 Optional<ResponseMode> fromString(String string)
public String toString()
toString in class Enum<ResponseMode>Copyright © 2015–2021 52North Initiative for Geospatial Open Source Software GmbH. All rights reserved.