org.keridwen.core.data.model
Enum NodeState

java.lang.Object
  extended by java.lang.Enum<NodeState>
      extended by org.keridwen.core.data.model.NodeState
All Implemented Interfaces:
Serializable, Comparable<NodeState>

public enum NodeState
extends Enum<NodeState>

State of the Forceria Nodes. There are 4 states: New : the object has been added in the forceria data tree model and need a persistent save UpToDate : the object is consistent with the persistence Modified : the object has been modified and need to be saved again in persistence Deleted : the object has been removed and need to be removed from persitence

Author:
JeT - Artenum

Enum Constant Summary
DELETED
           
MODIFIED
           
NEW
           
SAVED
           
 
Method Summary
static NodeState valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NodeState[] 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

NEW

public static final NodeState NEW

SAVED

public static final NodeState SAVED

MODIFIED

public static final NodeState MODIFIED

DELETED

public static final NodeState DELETED
Method Detail

values

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

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

valueOf

public static NodeState 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-2013 Artenum. All Rights Reserved.