|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EditState>
net.refractions.udig.tools.edit.EditState
public enum EditState
Enumerates the various states an editing tool may be in.
Enum Constant Summary | |
---|---|
BUSY
Something is going on |
|
COMMITTING
A commit is taking place. |
|
CREATING
A new feature is being created |
|
ILLEGAL
Editing is not permitted |
|
MODIFYING
An existing feature is being modified |
|
MOVING
A vertex or geom or shape (or something) is being moved |
|
NONE
No editing has occured |
Method Summary | |
---|---|
static EditState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EditState[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EditState NONE
public static final EditState MODIFYING
public static final EditState MOVING
public static final EditState CREATING
public static final EditState ILLEGAL
public static final EditState BUSY
public static final EditState COMMITTING
Method Detail |
---|
public static final EditState[] values()
for(EditState c : EditState.values()) System.out.println(c);
public static EditState 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
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |