gr.uoa.di.madgik.execution.plan.element
Enum PlanElementBase.ClockType

java.lang.Object
  extended by java.lang.Enum<PlanElementBase.ClockType>
      extended by gr.uoa.di.madgik.execution.plan.element.PlanElementBase.ClockType
All Implemented Interfaces:
Serializable, Comparable<PlanElementBase.ClockType>
Enclosing class:
PlanElementBase

protected static enum PlanElementBase.ClockType
extends Enum<PlanElementBase.ClockType>

The type of clock associated with PlanElementBase.StartClock(ClockType) and PlanElementBase.StopClock(ClockType)


Enum Constant Summary
Call
          Sub Calls time
Children
          Timing the children of the element
Finilization
          Finalization timing
Init
          Initialization timing
Total
          The Total time
 
Method Summary
static PlanElementBase.ClockType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PlanElementBase.ClockType[] 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

Init

public static final PlanElementBase.ClockType Init
Initialization timing


Finilization

public static final PlanElementBase.ClockType Finilization
Finalization timing


Children

public static final PlanElementBase.ClockType Children
Timing the children of the element


Total

public static final PlanElementBase.ClockType Total
The Total time


Call

public static final PlanElementBase.ClockType Call
Sub Calls time

Method Detail

values

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

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

valueOf

public static PlanElementBase.ClockType 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 © 2013. All Rights Reserved.