Wildfire 3.1.1 Javadoc

org.jivesoftware.wildfire.stats
Enum Statistic.Type

java.lang.Object
  extended by java.lang.Enum<Statistic.Type>
      extended by org.jivesoftware.wildfire.stats.Statistic.Type
All Implemented Interfaces:
Serializable, Comparable<Statistic.Type>
Enclosing interface:
Statistic

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


Enum Constant Summary
count
          Specifies a count at a specific time period.
rate
          Specifies a rate over time.
 
Method Summary
static Statistic.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Statistic.Type[] 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

rate

public static final Statistic.Type rate
Specifies a rate over time. For example, the averave of kb/s in file transfers.


count

public static final Statistic.Type count
Specifies a count at a specific time period. An example would be the number of users in MultiUserChat at this second.

Method Detail

values

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

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

valueOf

public static Statistic.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

Wildfire 3.1.1 Javadoc

Copyright © 2003-2006 Jive Software.