nl.coderight.jazz.form.event
Enum FormModelEvent.FormModelEventType

java.lang.Object
  extended by java.lang.Enum<FormModelEvent.FormModelEventType>
      extended by nl.coderight.jazz.form.event.FormModelEvent.FormModelEventType
All Implemented Interfaces:
Serializable, Comparable<FormModelEvent.FormModelEventType>
Enclosing class:
FormModelEvent

public static enum FormModelEvent.FormModelEventType
extends Enum<FormModelEvent.FormModelEventType>


Enum Constant Summary
VALUE_CHANGED
           
VALUE_DELETED
           
VALUE_INSERTED
           
VALUE_UPDATED
           
 
Method Summary
static FormModelEvent.FormModelEventType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FormModelEvent.FormModelEventType[] 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

VALUE_CHANGED

public static final FormModelEvent.FormModelEventType VALUE_CHANGED

VALUE_INSERTED

public static final FormModelEvent.FormModelEventType VALUE_INSERTED

VALUE_UPDATED

public static final FormModelEvent.FormModelEventType VALUE_UPDATED

VALUE_DELETED

public static final FormModelEvent.FormModelEventType VALUE_DELETED
Method Detail

values

public static FormModelEvent.FormModelEventType[] 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 (FormModelEvent.FormModelEventType c : FormModelEvent.FormModelEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static FormModelEvent.FormModelEventType 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


Copyright 2010 CodeRight, All rights reserved.