public enum WindowMode extends Enum<WindowMode>
a fixed-size sliding window
or time boxed
.Enum Constant and Description |
---|
FIXED
Fixed-size sliding window.
|
TIMED
Time boxed.
|
Modifier and Type | Method and Description |
---|---|
static WindowMode |
get()
Gets defined JMeter mode.
|
static WindowMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WindowMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowMode FIXED
public static final WindowMode TIMED
public static WindowMode[] values()
for (WindowMode c : WindowMode.values()) System.out.println(c);
public static WindowMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static WindowMode get()
Copyright © 1998-2019 Apache Software Foundation. All Rights Reserved.