org.jppf.ui.monitoring.data
Enum Fields

java.lang.Object
  extended by java.lang.Enum<Fields>
      extended by org.jppf.ui.monitoring.data.Fields
All Implemented Interfaces:
Serializable, Comparable<Fields>

public enum Fields
extends Enum<Fields>

Author:
Laurent Cohen

Enum Constant Summary
AVG_EXECUTION_TIME
          Name for the average task execution time.
AVG_NODE_EXECUTION_TIME
          Name for the average task execution time on a node.
AVG_QUEUE_TIME
          Name for the maximum time a task remained in the queue .
AVG_TRANSPORT_TIME
          Name for the average task tansport time.
LATEST_EXECUTION_TIME
          Name for the execution time of the last executed task.
LATEST_NODE_EXECUTION_TIME
          Name for the execution time of the last executed task on a node.
LATEST_QUEUE_TIME
          Name for the time the last queued task remained in the queue.
LATEST_TRANSPORT_TIME
          Name for the execution time of the last tansported task.
MAX_CLIENTS
          Name for the maximum number of clients ever connected to the server.
MAX_EXECUTION_TIME
          Name for the maximum task execution time.
MAX_NODE_EXECUTION_TIME
          Name for the maximum task execution time on a node.
MAX_NODES
          Name for the maximum number of nodes ever connected to the server.
MAX_QUEUE_SIZE
          Name for the maximum size the queue reached.
MAX_QUEUE_TIME
          Name for the maximum time a task remained in the queue .
MAX_TRANSPORT_TIME
          Name for the maximum task tansport time.
MIN_EXECUTION_TIME
          Name for the minimum task execution time.
MIN_NODE_EXECUTION_TIME
          Name for the minimum task execution time on a node.
MIN_QUEUE_TIME
          Name for the minimum time a task remained in the queue .
MIN_TRANSPORT_TIME
          Name for the minimum task tansport time.
NB_CLIENTS
          Name for the current number of clients connected to the server.
NB_NODES
          Name for the current number of nodes connected to the server.
QUEUE_SIZE
          Name for the current queue size.
TOTAL_EXECUTION_TIME
          Name for the total execution time for all tasks.
TOTAL_NODE_EXECUTION_TIME
          Name for the total execution time for all tasks on the nodes.
TOTAL_QUEUE_TIME
          Name for the total time spent in the queue by all tasks.
TOTAL_QUEUED
          Name for the total number of tasks that have been queued.
TOTAL_TASKS_EXECUTED
          Name for the total number of tasks executed.
TOTAL_TRANSPORT_TIME
          Name for the total tansport time for all tasks.
 
Method Summary
 String toString()
          Return a localized version of this item name.
static Fields valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Fields[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

TOTAL_TASKS_EXECUTED

public static final Fields TOTAL_TASKS_EXECUTED
Name for the total number of tasks executed.


TOTAL_EXECUTION_TIME

public static final Fields TOTAL_EXECUTION_TIME
Name for the total execution time for all tasks.


LATEST_EXECUTION_TIME

public static final Fields LATEST_EXECUTION_TIME
Name for the execution time of the last executed task.


MIN_EXECUTION_TIME

public static final Fields MIN_EXECUTION_TIME
Name for the minimum task execution time.


MAX_EXECUTION_TIME

public static final Fields MAX_EXECUTION_TIME
Name for the maximum task execution time.


AVG_EXECUTION_TIME

public static final Fields AVG_EXECUTION_TIME
Name for the average task execution time.


TOTAL_TRANSPORT_TIME

public static final Fields TOTAL_TRANSPORT_TIME
Name for the total tansport time for all tasks.


LATEST_TRANSPORT_TIME

public static final Fields LATEST_TRANSPORT_TIME
Name for the execution time of the last tansported task.


MIN_TRANSPORT_TIME

public static final Fields MIN_TRANSPORT_TIME
Name for the minimum task tansport time.


MAX_TRANSPORT_TIME

public static final Fields MAX_TRANSPORT_TIME
Name for the maximum task tansport time.


AVG_TRANSPORT_TIME

public static final Fields AVG_TRANSPORT_TIME
Name for the average task tansport time.


TOTAL_NODE_EXECUTION_TIME

public static final Fields TOTAL_NODE_EXECUTION_TIME
Name for the total execution time for all tasks on the nodes.


LATEST_NODE_EXECUTION_TIME

public static final Fields LATEST_NODE_EXECUTION_TIME
Name for the execution time of the last executed task on a node.


MIN_NODE_EXECUTION_TIME

public static final Fields MIN_NODE_EXECUTION_TIME
Name for the minimum task execution time on a node.


MAX_NODE_EXECUTION_TIME

public static final Fields MAX_NODE_EXECUTION_TIME
Name for the maximum task execution time on a node.


AVG_NODE_EXECUTION_TIME

public static final Fields AVG_NODE_EXECUTION_TIME
Name for the average task execution time on a node.


LATEST_QUEUE_TIME

public static final Fields LATEST_QUEUE_TIME
Name for the time the last queued task remained in the queue.


TOTAL_QUEUE_TIME

public static final Fields TOTAL_QUEUE_TIME
Name for the total time spent in the queue by all tasks.


MIN_QUEUE_TIME

public static final Fields MIN_QUEUE_TIME
Name for the minimum time a task remained in the queue .


MAX_QUEUE_TIME

public static final Fields MAX_QUEUE_TIME
Name for the maximum time a task remained in the queue .


AVG_QUEUE_TIME

public static final Fields AVG_QUEUE_TIME
Name for the maximum time a task remained in the queue .


TOTAL_QUEUED

public static final Fields TOTAL_QUEUED
Name for the total number of tasks that have been queued.


QUEUE_SIZE

public static final Fields QUEUE_SIZE
Name for the current queue size.


MAX_QUEUE_SIZE

public static final Fields MAX_QUEUE_SIZE
Name for the maximum size the queue reached.


NB_NODES

public static final Fields NB_NODES
Name for the current number of nodes connected to the server.


MAX_NODES

public static final Fields MAX_NODES
Name for the maximum number of nodes ever connected to the server.


NB_CLIENTS

public static final Fields NB_CLIENTS
Name for the current number of clients connected to the server.


MAX_CLIENTS

public static final Fields MAX_CLIENTS
Name for the maximum number of clients ever connected to the server.

Method Detail

values

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

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

valueOf

public static Fields 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

toString

public String toString()
Return a localized version of this item name.

Overrides:
toString in class Enum<Fields>
Returns:
the localized nbame as a string.
See Also:
Enum.toString()


Copyright © 2005-2010 JPPF Team.