org.jboss.cache.mvcc
Enum ReadCommittedNode.Flags

java.lang.Object
  extended by java.lang.Enum<ReadCommittedNode.Flags>
      extended by org.jboss.cache.mvcc.ReadCommittedNode.Flags
All Implemented Interfaces:
Serializable, Comparable<ReadCommittedNode.Flags>
Enclosing class:
ReadCommittedNode

protected static enum ReadCommittedNode.Flags
extends Enum<ReadCommittedNode.Flags>


Enum Constant Summary
CHANGED
           
CREATED
           
DELETED
           
ORIG_CHILDREN_LOADED
           
ORIG_DATA_LOADED
           
 
Method Summary
static ReadCommittedNode.Flags valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ReadCommittedNode.Flags[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CHANGED

public static final ReadCommittedNode.Flags CHANGED

CREATED

public static final ReadCommittedNode.Flags CREATED

DELETED

public static final ReadCommittedNode.Flags DELETED

ORIG_DATA_LOADED

public static final ReadCommittedNode.Flags ORIG_DATA_LOADED

ORIG_CHILDREN_LOADED

public static final ReadCommittedNode.Flags ORIG_CHILDREN_LOADED
Method Detail

values

public static final ReadCommittedNode.Flags[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ReadCommittedNode.Flags c : ReadCommittedNode.Flags.values())
        System.out.println(c);

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

valueOf

public static ReadCommittedNode.Flags 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


Copyright © 2009 JBoss, a division of Red Hat. All Rights Reserved.