http://www.jpicedt.org

jpicedt.graphic.event
Enum DrawingEvent.EventType

java.lang.Object
  extended by java.lang.Enum<DrawingEvent.EventType>
      extended by 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.


Enum Constant Summary
ATTRIBUTE_CHANGE
           
GEOMETRY_CHANGE
           
INSERT
           
REMOVE
           
REPLACE
           
TEXT_CHANGE
           
 
Method Summary
static DrawingEvent.EventType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DrawingEvent.EventType[] 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

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
Method Detail

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

http://www.jpicedt.org

Submit a bug : syd@jpicedt.org