org.addsimplicity.anicetus.entity
Enum ExecInfoFields

java.lang.Object
  extended by java.lang.Enum<ExecInfoFields>
      extended by org.addsimplicity.anicetus.entity.ExecInfoFields
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExecInfoFields>

public enum ExecInfoFields
extends java.lang.Enum<ExecInfoFields>

The ExecInfoFields defines the properties that are added by ExecInfo

Author:
Dan Pritchett (driveawedge@yahoo.com)
See Also:
ExecInfo

Enum Constant Summary
Duration
          The execution duration of the container in nanoseconds.
Status
          The execution status as defined by CompletionStatus.
 
Method Summary
static ExecInfoFields valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExecInfoFields[] 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

Duration

public static final ExecInfoFields Duration
The execution duration of the container in nanoseconds.


Status

public static final ExecInfoFields Status
The execution status as defined by CompletionStatus.

See Also:
CompletionStatus
Method Detail

values

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

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

valueOf

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


Copyright © 2009 Add Simplicity. All Rights Reserved.