com.ibm.batch.container.context.impl
Enum MetricImpl.Counter

java.lang.Object
  extended by java.lang.Enum<MetricImpl.Counter>
      extended by com.ibm.batch.container.context.impl.MetricImpl.Counter
All Implemented Interfaces:
Serializable, Comparable<MetricImpl.Counter>
Enclosing class:
MetricImpl

public static enum MetricImpl.Counter
extends Enum<MetricImpl.Counter>


Enum Constant Summary
COMMIT_COUNT
           
FILTER_COUNT
           
PROCESS_SKIP_COUNT
           
READ_COUNT
           
READ_SKIP_COUNT
           
ROLLBACK_COUNT
           
WRITE_COUNT
           
WRITE_SKIP_COUNT
           
 
Method Summary
 String toString()
           
static MetricImpl.Counter valueOf(String name)
          Returns the enum constant of this type with the specified name.
static MetricImpl.Counter[] 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

READ_COUNT

public static final MetricImpl.Counter READ_COUNT

WRITE_COUNT

public static final MetricImpl.Counter WRITE_COUNT

COMMIT_COUNT

public static final MetricImpl.Counter COMMIT_COUNT

ROLLBACK_COUNT

public static final MetricImpl.Counter ROLLBACK_COUNT

READ_SKIP_COUNT

public static final MetricImpl.Counter READ_SKIP_COUNT

PROCESS_SKIP_COUNT

public static final MetricImpl.Counter PROCESS_SKIP_COUNT

FILTER_COUNT

public static final MetricImpl.Counter FILTER_COUNT

WRITE_SKIP_COUNT

public static final MetricImpl.Counter WRITE_SKIP_COUNT
Method Detail

values

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

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

valueOf

public static MetricImpl.Counter 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()
Overrides:
toString in class Enum<MetricImpl.Counter>


Copyright © 2013. All Rights Reserved.