Enum AutoStopAggregation
- java.lang.Object
-
- java.lang.Enum<AutoStopAggregation>
-
- us.abstracta.jmeter.javadsl.core.listeners.autostop.AutoStopAggregation
-
- All Implemented Interfaces:
Serializable,Comparable<AutoStopAggregation>
public enum AutoStopAggregation extends Enum<AutoStopAggregation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAXMEANMINPER_SECONDPERCENTPERCENTILETOTAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description AutoStopAggregator<?>buildAggregator(AutoStopConditionElement condition)StringgetNameFor(AutoStopConditionElement condition)static AutoStopAggregationvalueOf(String name)Returns the enum constant of this type with the specified name.static AutoStopAggregation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final AutoStopAggregation MIN
-
MAX
public static final AutoStopAggregation MAX
-
MEAN
public static final AutoStopAggregation MEAN
-
PERCENTILE
public static final AutoStopAggregation PERCENTILE
-
TOTAL
public static final AutoStopAggregation TOTAL
-
PER_SECOND
public static final AutoStopAggregation PER_SECOND
-
PERCENT
public static final AutoStopAggregation PERCENT
-
-
Method Detail
-
values
public static AutoStopAggregation[] 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 (AutoStopAggregation c : AutoStopAggregation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoStopAggregation 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 nameNullPointerException- if the argument is null
-
buildAggregator
public AutoStopAggregator<?> buildAggregator(AutoStopConditionElement condition)
-
getNameFor
public String getNameFor(AutoStopConditionElement condition)
-
-