org.apache.jackrabbit.api.stats
Enum RepositoryStatistics.Type

java.lang.Object
  extended by java.lang.Enum<RepositoryStatistics.Type>
      extended by org.apache.jackrabbit.api.stats.RepositoryStatistics.Type
All Implemented Interfaces:
Serializable, Comparable<RepositoryStatistics.Type>
Enclosing interface:
RepositoryStatistics

public static enum RepositoryStatistics.Type
extends Enum<RepositoryStatistics.Type>


Enum Constant Summary
BUNDLE_CACHE_ACCESS_COUNTER
           
BUNDLE_CACHE_MISS_AVERAGE
           
BUNDLE_CACHE_MISS_COUNTER
           
BUNDLE_CACHE_MISS_DURATION
           
BUNDLE_CACHE_SIZE_COUNTER
           
BUNDLE_COUNTER
           
BUNDLE_READ_COUNTER
           
BUNDLE_WRITE_AVERAGE
           
BUNDLE_WRITE_COUNTER
           
BUNDLE_WRITE_DURATION
           
BUNDLE_WS_SIZE_COUNTER
           
QUERY_AVERAGE
           
QUERY_COUNT
           
QUERY_DURATION
           
SESSION_COUNT
           
SESSION_LOGIN_COUNTER
           
SESSION_READ_AVERAGE
           
SESSION_READ_COUNTER
           
SESSION_READ_DURATION
           
SESSION_WRITE_AVERAGE
           
SESSION_WRITE_COUNTER
           
SESSION_WRITE_DURATION
           
 
Method Summary
 boolean isResetValueEachSecond()
           
static RepositoryStatistics.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static RepositoryStatistics.Type[] 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

BUNDLE_READ_COUNTER

public static final RepositoryStatistics.Type BUNDLE_READ_COUNTER

BUNDLE_WRITE_COUNTER

public static final RepositoryStatistics.Type BUNDLE_WRITE_COUNTER

BUNDLE_WRITE_DURATION

public static final RepositoryStatistics.Type BUNDLE_WRITE_DURATION

BUNDLE_WRITE_AVERAGE

public static final RepositoryStatistics.Type BUNDLE_WRITE_AVERAGE

BUNDLE_CACHE_ACCESS_COUNTER

public static final RepositoryStatistics.Type BUNDLE_CACHE_ACCESS_COUNTER

BUNDLE_CACHE_SIZE_COUNTER

public static final RepositoryStatistics.Type BUNDLE_CACHE_SIZE_COUNTER

BUNDLE_CACHE_MISS_COUNTER

public static final RepositoryStatistics.Type BUNDLE_CACHE_MISS_COUNTER

BUNDLE_CACHE_MISS_DURATION

public static final RepositoryStatistics.Type BUNDLE_CACHE_MISS_DURATION

BUNDLE_CACHE_MISS_AVERAGE

public static final RepositoryStatistics.Type BUNDLE_CACHE_MISS_AVERAGE

BUNDLE_COUNTER

public static final RepositoryStatistics.Type BUNDLE_COUNTER

BUNDLE_WS_SIZE_COUNTER

public static final RepositoryStatistics.Type BUNDLE_WS_SIZE_COUNTER

SESSION_READ_COUNTER

public static final RepositoryStatistics.Type SESSION_READ_COUNTER

SESSION_READ_DURATION

public static final RepositoryStatistics.Type SESSION_READ_DURATION

SESSION_READ_AVERAGE

public static final RepositoryStatistics.Type SESSION_READ_AVERAGE

SESSION_WRITE_COUNTER

public static final RepositoryStatistics.Type SESSION_WRITE_COUNTER

SESSION_WRITE_DURATION

public static final RepositoryStatistics.Type SESSION_WRITE_DURATION

SESSION_WRITE_AVERAGE

public static final RepositoryStatistics.Type SESSION_WRITE_AVERAGE

SESSION_LOGIN_COUNTER

public static final RepositoryStatistics.Type SESSION_LOGIN_COUNTER

SESSION_COUNT

public static final RepositoryStatistics.Type SESSION_COUNT

QUERY_COUNT

public static final RepositoryStatistics.Type QUERY_COUNT

QUERY_DURATION

public static final RepositoryStatistics.Type QUERY_DURATION

QUERY_AVERAGE

public static final RepositoryStatistics.Type QUERY_AVERAGE
Method Detail

values

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

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

valueOf

public static RepositoryStatistics.Type 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

isResetValueEachSecond

public boolean isResetValueEachSecond()


Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.