org.jumpmind.symmetric.statistic
Enum StatisticName

java.lang.Object
  extended by java.lang.Enum<StatisticName>
      extended by org.jumpmind.symmetric.statistic.StatisticName
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StatisticName>

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


Enum Constant Summary
INCOMING_BATCH_COUNT
           
INCOMING_DATABASE_ERROR_COUNT
           
INCOMING_MS_PER_ROW
           
INCOMING_OTHER_ERROR_COUNT
           
INCOMING_SKIP_BATCH_COUNT
           
INCOMING_TRANSPORT_CONNECT_ERROR_COUNT
           
INCOMING_TRANSPORT_ERROR_COUNT
           
INCOMING_TRANSPORT_REJECTED_COUNT
           
NODE_CONCURRENCY_CONNECTION_RESERVED
           
NODE_CONCURRENCY_RESERVATION_REQUESTED
           
NODE_CONCURRENCY_RESERVATION_TIMEOUT_COUNT
           
NODE_CONCURRENCY_TOO_BUSY_COUNT
           
OUTGOING_BATCH_COUNT
           
OUTGOING_DATABASE_ERRORS
           
OUTGOING_EVENTS_PER_BATCH
           
OUTGOING_MS_PER_EVENT_BATCHED
           
OUTGOING_NETWORK_ERRORS
           
OUTGOING_ROW_COUNT
           
OUTGOING_ROWS_PER_MS
           
 
Method Summary
static StatisticName valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StatisticName[] 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

INCOMING_TRANSPORT_ERROR_COUNT

public static final StatisticName INCOMING_TRANSPORT_ERROR_COUNT

INCOMING_TRANSPORT_CONNECT_ERROR_COUNT

public static final StatisticName INCOMING_TRANSPORT_CONNECT_ERROR_COUNT

INCOMING_TRANSPORT_REJECTED_COUNT

public static final StatisticName INCOMING_TRANSPORT_REJECTED_COUNT

INCOMING_DATABASE_ERROR_COUNT

public static final StatisticName INCOMING_DATABASE_ERROR_COUNT

INCOMING_OTHER_ERROR_COUNT

public static final StatisticName INCOMING_OTHER_ERROR_COUNT

INCOMING_MS_PER_ROW

public static final StatisticName INCOMING_MS_PER_ROW

INCOMING_BATCH_COUNT

public static final StatisticName INCOMING_BATCH_COUNT

INCOMING_SKIP_BATCH_COUNT

public static final StatisticName INCOMING_SKIP_BATCH_COUNT

OUTGOING_MS_PER_EVENT_BATCHED

public static final StatisticName OUTGOING_MS_PER_EVENT_BATCHED

OUTGOING_EVENTS_PER_BATCH

public static final StatisticName OUTGOING_EVENTS_PER_BATCH

NODE_CONCURRENCY_TOO_BUSY_COUNT

public static final StatisticName NODE_CONCURRENCY_TOO_BUSY_COUNT

NODE_CONCURRENCY_CONNECTION_RESERVED

public static final StatisticName NODE_CONCURRENCY_CONNECTION_RESERVED

NODE_CONCURRENCY_RESERVATION_REQUESTED

public static final StatisticName NODE_CONCURRENCY_RESERVATION_REQUESTED

NODE_CONCURRENCY_RESERVATION_TIMEOUT_COUNT

public static final StatisticName NODE_CONCURRENCY_RESERVATION_TIMEOUT_COUNT

OUTGOING_NETWORK_ERRORS

public static final StatisticName OUTGOING_NETWORK_ERRORS

OUTGOING_DATABASE_ERRORS

public static final StatisticName OUTGOING_DATABASE_ERRORS

OUTGOING_ROWS_PER_MS

public static final StatisticName OUTGOING_ROWS_PER_MS

OUTGOING_BATCH_COUNT

public static final StatisticName OUTGOING_BATCH_COUNT

OUTGOING_ROW_COUNT

public static final StatisticName OUTGOING_ROW_COUNT
Method Detail

values

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

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

valueOf

public static StatisticName 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 © 2007-2008. All Rights Reserved.