public enum RequestEncoding extends java.lang.Enum<RequestEncoding>
| Enum Constant and Description |
|---|
KVP
Use query parameters for the WMTS tile parameters.
|
REST
Use Rest format for encoding the WMTS tile parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestEncoding KVP
public static final RequestEncoding REST
public static RequestEncoding[] values()
for (RequestEncoding c : RequestEncoding.values()) System.out.println(c);
public static RequestEncoding 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 namejava.lang.NullPointerException - if the argument is null