public static enum ZoomToFeatures.ZoomType extends java.lang.Enum<ZoomToFeatures.ZoomType>
| Enum Constant and Description |
|---|
CENTER
Set the center of the map to the center of the extent of the features.
|
EXTENT
Set the extent of the map so that all features are visible.
|
| Modifier and Type | Method and Description |
|---|---|
static ZoomToFeatures.ZoomType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ZoomToFeatures.ZoomType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ZoomToFeatures.ZoomType CENTER
public static final ZoomToFeatures.ZoomType EXTENT
public static ZoomToFeatures.ZoomType[] values()
for (ZoomToFeatures.ZoomType c : ZoomToFeatures.ZoomType.values()) System.out.println(c);
public static ZoomToFeatures.ZoomType 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