public enum ImagerySet extends Enum<ImagerySet>
| Enum Constant and Description |
|---|
Aerial |
AerialWithLabels |
CollinsBart |
OrdnanceSurvey |
Road |
| Modifier and Type | Method and Description |
|---|---|
static ImagerySet |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImagerySet[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImagerySet Aerial
public static final ImagerySet AerialWithLabels
public static final ImagerySet Road
public static final ImagerySet OrdnanceSurvey
public static final ImagerySet CollinsBart
public static ImagerySet[] values()
for (ImagerySet c : ImagerySet.values()) System.out.println(c);
public static ImagerySet 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 nullCopyright © 2015 Revolution Systems Inc.. All rights reserved.