jpicedt.graphic.event
Enum DrawingEvent.EventType
java.lang.Object
java.lang.Enum<DrawingEvent.EventType>
jpicedt.graphic.event.DrawingEvent.EventType
- All Implemented Interfaces:
- Serializable, Comparable<DrawingEvent.EventType>
- Enclosing interface:
- DrawingEvent
public static enum DrawingEvent.EventType
- extends Enum<DrawingEvent.EventType>
Enumeration for DrawingEvent types.
GEOMETRY_CHANGE
public static final DrawingEvent.EventType GEOMETRY_CHANGE
ATTRIBUTE_CHANGE
public static final DrawingEvent.EventType ATTRIBUTE_CHANGE
TEXT_CHANGE
public static final DrawingEvent.EventType TEXT_CHANGE
INSERT
public static final DrawingEvent.EventType INSERT
REMOVE
public static final DrawingEvent.EventType REMOVE
REPLACE
public static final DrawingEvent.EventType REPLACE
values
public static DrawingEvent.EventType[] 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 (DrawingEvent.EventType c : DrawingEvent.EventType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DrawingEvent.EventType 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 name
NullPointerException
- if the argument is null
Submit a bug : syd@jpicedt.org