org.priha.providers
Enum PerformanceReporter.Count

java.lang.Object
  extended by java.lang.Enum<PerformanceReporter.Count>
      extended by org.priha.providers.PerformanceReporter.Count
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PerformanceReporter.Count>
Enclosing interface:
PerformanceReporter

public static enum PerformanceReporter.Count
extends java.lang.Enum<PerformanceReporter.Count>


Enum Constant Summary
AddNode
           
Close
           
Copy
           
FindByUUID
           
FindReferences
           
GetPropertyValue
           
ItemExists
           
ListNodes
           
ListProperties
           
ListWorkspaces
           
Move
           
Open
           
PutPropertyValue
           
Remove
           
Start
           
Stop
           
 
Method Summary
static PerformanceReporter.Count valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PerformanceReporter.Count[] 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

Open

public static final PerformanceReporter.Count Open

Close

public static final PerformanceReporter.Count Close

Start

public static final PerformanceReporter.Count Start

Stop

public static final PerformanceReporter.Count Stop

ListProperties

public static final PerformanceReporter.Count ListProperties

GetPropertyValue

public static final PerformanceReporter.Count GetPropertyValue

ItemExists

public static final PerformanceReporter.Count ItemExists

AddNode

public static final PerformanceReporter.Count AddNode

PutPropertyValue

public static final PerformanceReporter.Count PutPropertyValue

Copy

public static final PerformanceReporter.Count Copy

Move

public static final PerformanceReporter.Count Move

ListNodes

public static final PerformanceReporter.Count ListNodes

ListWorkspaces

public static final PerformanceReporter.Count ListWorkspaces

Remove

public static final PerformanceReporter.Count Remove

FindByUUID

public static final PerformanceReporter.Count FindByUUID

FindReferences

public static final PerformanceReporter.Count FindReferences
Method Detail

values

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

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

valueOf

public static PerformanceReporter.Count valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null