public enum SlowTest extends Enum<SlowTest> implements Flag
Enum Constant and Description |
---|
FLAG |
Modifier and Type | Method and Description |
---|---|
String |
getMessage() |
String |
getSymbol() |
String |
getType() |
static SlowTest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SlowTest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SlowTest FLAG
public static SlowTest[] values()
for (SlowTest c : SlowTest.values()) System.out.println(c);
public static SlowTest 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 String getMessage()
getMessage
in interface Flag
Copyright © 2021. All rights reserved.