Enum Modal.Mode
- java.lang.Object
-
- java.lang.Enum<Modal.Mode>
-
- org.jungrapht.visualization.control.modal.Modal.Mode
-
- All Implemented Interfaces:
Serializable
,Comparable<Modal.Mode>
- Enclosing interface:
- Modal
public static enum Modal.Mode extends Enum<Modal.Mode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATING
EDITING
PICKING
TRANSFORMING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Modal.Mode
valueOf(String name)
Returns the enum constant of this type with the specified name.static Modal.Mode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRANSFORMING
public static final Modal.Mode TRANSFORMING
-
PICKING
public static final Modal.Mode PICKING
-
ANNOTATING
public static final Modal.Mode ANNOTATING
-
EDITING
public static final Modal.Mode EDITING
-
-
Method Detail
-
values
public static Modal.Mode[] 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 (Modal.Mode c : Modal.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Modal.Mode valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-