public enum PerformanceIndex extends java.lang.Enum<PerformanceIndex>
Enum Constant and Description |
---|
AverageBandwidth
Average speed of data being transmitted (bytes/sec).
|
RoundTripTime
Time duration in milliseconds from request arrival to its fully completion.
|
TimeToFirstByte
Time duration in milliseconds from request arrival to the first byte of response being received.
|
Modifier and Type | Method and Description |
---|---|
static PerformanceIndex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceIndex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceIndex TimeToFirstByte
public static final PerformanceIndex RoundTripTime
public static final PerformanceIndex AverageBandwidth
public static PerformanceIndex[] values()
for (PerformanceIndex c : PerformanceIndex.values()) System.out.println(c);
public static PerformanceIndex valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null