public enum StressTestPlatform extends Enum<StressTestPlatform>
Enum Constant and Description |
---|
BROWSER_VIEW |
SERVER_VIEW |
USER_VIEW |
Modifier and Type | Method and Description |
---|---|
static StressTestPlatform |
fromString(String offer) |
String |
toString() |
static StressTestPlatform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StressTestPlatform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StressTestPlatform SERVER_VIEW
public static final StressTestPlatform BROWSER_VIEW
public static final StressTestPlatform USER_VIEW
public static StressTestPlatform[] values()
for (StressTestPlatform c : StressTestPlatform.values()) System.out.println(c);
public static StressTestPlatform 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 StressTestPlatform fromString(String offer)
public String toString()
toString
in class Enum<StressTestPlatform>
Copyright © 2016–2020. All rights reserved.