|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ToolBar.CursorMode>
com.sun.electric.tool.user.ui.ToolBar.CursorMode
public static enum ToolBar.CursorMode
CursorMode is a typesafe enum class that describes the current editing mode (select, zoom, etc).
Enum Constant Summary | |
---|---|
CLICKZOOMWIRE
Describes ClickZoomWire mode (does everything). |
|
MEASURE
Describes Measure mode. |
|
OUTLINE
Describes Outline edit mode. |
|
PAN
Describes Panning mode (move window contents). |
|
ZOOM
Describes Zoom mode (scale window contents). |
Method Summary | |
---|---|
static ToolBar.CursorMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ToolBar.CursorMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ToolBar.CursorMode CLICKZOOMWIRE
public static final ToolBar.CursorMode PAN
public static final ToolBar.CursorMode ZOOM
public static final ToolBar.CursorMode OUTLINE
public static final ToolBar.CursorMode MEASURE
Method Detail |
---|
public static ToolBar.CursorMode[] values()
for (ToolBar.CursorMode c : ToolBar.CursorMode.values()) System.out.println(c);
public static ToolBar.CursorMode 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |