com.planetj.servlet.filter.compression
Enum CompressingFilterStats.StatsField

java.lang.Object
  extended by java.lang.Enum<CompressingFilterStats.StatsField>
      extended by com.planetj.servlet.filter.compression.CompressingFilterStats.StatsField
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CompressingFilterStats.StatsField>
Enclosing class:
CompressingFilterStats

static enum CompressingFilterStats.StatsField
extends java.lang.Enum<CompressingFilterStats.StatsField>
implements java.io.Serializable

A simple enum used by CompressingFilterStats.OutputStatsCallback to select a field in this class. This is getting a little messy but somehow better than defining a bunch of inner classes?

Since:
1.6

Enum Constant Summary
REQUEST_COMPRESSED_BYTES
           
REQUEST_INPUT_BYTES
           
RESPONSE_COMPRESSED_BYTES
           
RESPONSE_INPUT_BYTES
           
 
Method Summary
static CompressingFilterStats.StatsField valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CompressingFilterStats.StatsField[] 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

RESPONSE_INPUT_BYTES

public static final CompressingFilterStats.StatsField RESPONSE_INPUT_BYTES

RESPONSE_COMPRESSED_BYTES

public static final CompressingFilterStats.StatsField RESPONSE_COMPRESSED_BYTES

REQUEST_INPUT_BYTES

public static final CompressingFilterStats.StatsField REQUEST_INPUT_BYTES

REQUEST_COMPRESSED_BYTES

public static final CompressingFilterStats.StatsField REQUEST_COMPRESSED_BYTES
Method Detail

values

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

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

valueOf

public static CompressingFilterStats.StatsField 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