Package one.empty3.gui
Enum GraphicalEdit2.Action
- java.lang.Object
-
- java.lang.Enum<GraphicalEdit2.Action>
-
- one.empty3.gui.GraphicalEdit2.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GraphicalEdit2.Action>
- Enclosing class:
- GraphicalEdit2
public static enum GraphicalEdit2.Action extends java.lang.Enum<GraphicalEdit2.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description duplicateOnCurve
duplicateOnPoints
duplicateOnSurface
extrude
ROTATE
SELECT
TRANSLATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GraphicalEdit2.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GraphicalEdit2.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
duplicateOnPoints
public static final GraphicalEdit2.Action duplicateOnPoints
-
duplicateOnCurve
public static final GraphicalEdit2.Action duplicateOnCurve
-
duplicateOnSurface
public static final GraphicalEdit2.Action duplicateOnSurface
-
TRANSLATE
public static final GraphicalEdit2.Action TRANSLATE
-
ROTATE
public static final GraphicalEdit2.Action ROTATE
-
extrude
public static final GraphicalEdit2.Action extrude
-
SELECT
public static final GraphicalEdit2.Action SELECT
-
-
Method Detail
-
values
public static GraphicalEdit2.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GraphicalEdit2.Action c : GraphicalEdit2.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphicalEdit2.Action valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-