public static enum AutoScaleAction.AutoScaleMode extends java.lang.Enum<AutoScaleAction.AutoScaleMode>
Enum Constant and Description |
---|
CONFLICT
Zoom to the first selected conflict
|
DATA
Zoom the window so that all the data fills the window area
|
DOWNLOAD
Zoom the view to last downloaded data
|
LAYER
Zoom the window so that all the data on the currently selected layer fills the window area
|
NEXT
Zoom to the next zoomed to scale and location (zoom redo)
|
PREVIOUS
Zoom to the previous zoomed to scale and location (zoom undo)
|
PROBLEM
Zoom the view to problem
|
SELECTION
Zoom the window so that only data which is currently selected fills the window area
|
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
label |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getEnglishLabel()
Returns the English label.
|
java.lang.String |
getLocalizedLabel()
Returns the localized label.
|
static AutoScaleAction.AutoScaleMode |
of(java.lang.String englishLabel)
Returns
AutoScaleMode for a given English label |
static AutoScaleAction.AutoScaleMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutoScaleAction.AutoScaleMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoScaleAction.AutoScaleMode DATA
public static final AutoScaleAction.AutoScaleMode LAYER
public static final AutoScaleAction.AutoScaleMode SELECTION
public static final AutoScaleAction.AutoScaleMode CONFLICT
public static final AutoScaleAction.AutoScaleMode DOWNLOAD
public static final AutoScaleAction.AutoScaleMode PROBLEM
public static final AutoScaleAction.AutoScaleMode PREVIOUS
public static final AutoScaleAction.AutoScaleMode NEXT
private final java.lang.String label
public static AutoScaleAction.AutoScaleMode[] values()
for (AutoScaleAction.AutoScaleMode c : AutoScaleAction.AutoScaleMode.values()) System.out.println(c);
public static AutoScaleAction.AutoScaleMode 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 nullpublic java.lang.String getEnglishLabel()
public java.lang.String getLocalizedLabel()
public static AutoScaleAction.AutoScaleMode of(java.lang.String englishLabel)
AutoScaleMode
for a given English labelenglishLabel
- English labelAutoScaleMode
for given English labeljava.lang.IllegalArgumentException
- if Engligh label is unknown