org.jivesoftware.wildfire.stats
Enum Statistic.Type
java.lang.Object
java.lang.Enum<Statistic.Type>
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. |
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.
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
Copyright © 2003-2006 Jive Software.