public static enum OgcEnum.EndPoint extends Enum<OgcEnum.EndPoint>
| Enum Constant and Description |
|---|
CUSTOM_ENDPOINT |
LAYER |
LAYERS |
NAMESPACE |
TYPENAME |
TYPENAMES |
| Modifier and Type | Method and Description |
|---|---|
static OgcEnum.EndPoint |
fromString(String inputValue)
Static method to get an enum based on a string value.
|
static String[] |
getAllValues()
Returns all enum values as string array.
|
String |
toString()
This method is annotated with
JsonValue,
so that jackson will serialize the enum value to
the (lowercase) value. |
static OgcEnum.EndPoint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OgcEnum.EndPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OgcEnum.EndPoint LAYERS
public static final OgcEnum.EndPoint LAYER
public static final OgcEnum.EndPoint TYPENAME
public static final OgcEnum.EndPoint TYPENAMES
public static final OgcEnum.EndPoint NAMESPACE
public static final OgcEnum.EndPoint CUSTOM_ENDPOINT
public static OgcEnum.EndPoint[] values()
for (OgcEnum.EndPoint c : OgcEnum.EndPoint.values()) System.out.println(c);
public static OgcEnum.EndPoint 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 OgcEnum.EndPoint fromString(String inputValue)
JsonCreator,
which allows the client to send case insensitive string
values (like "jSon"), which will be converted to the
correct enum value.inputValue - public static String[] getAllValues()
public String toString()
JsonValue,
so that jackson will serialize the enum value to
the (lowercase) value.toString in class Enum<OgcEnum.EndPoint>Copyright © 2020 terrestris GmbH & Co. KG. All rights reserved.