@Api(allMethods=true) public enum BoundsLimitOption extends Enum<BoundsLimitOption> implements IsInfo
| Enum Constant and Description |
|---|
CENTER_WITHIN_MAX_BOUNDS
View center must be within maxBounds.
|
COMPLETELY_WITHIN_MAX_BOUNDS
The whole map view must lay completely within the maximum allowed bounds (maxBounds).
|
| Modifier and Type | Method and Description |
|---|---|
static BoundsLimitOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundsLimitOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundsLimitOption CENTER_WITHIN_MAX_BOUNDS
public static final BoundsLimitOption COMPLETELY_WITHIN_MAX_BOUNDS
public static BoundsLimitOption[] values()
for (BoundsLimitOption c : BoundsLimitOption.values()) System.out.println(c);
public static BoundsLimitOption 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 Geosparc. All Rights Reserved.