@Beta public enum Performance extends java.lang.Enum<Performance>
| Enum Constant and Description |
|---|
HIGH
Depending on your overall requirements, this might be something like < 20ms in the 99 percentile:
|
LOW
Depending on your overall requirements, this might be something like < 2000ms in the 99 percentile:
|
MEDIUM
Depending on your overall requirements, this might be something like < 200ms in the 99 percentile:
|
NOT_SPECIFIED
Default value if no performance requirements where specified.
|
| Modifier and Type | Method and Description |
|---|---|
static Performance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Performance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Performance HIGH
public static final Performance MEDIUM
public static final Performance LOW
public static final Performance NOT_SPECIFIED
public static Performance[] values()
for (Performance c : Performance.values()) System.out.println(c);
public static Performance 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