public enum StartedFrom extends Enum<StartedFrom>
| Enum Constant and Description |
|---|
ATP |
EXECUTOR |
ITF_STUB |
ITF_UI |
RAM2 |
| Modifier and Type | Method and Description |
|---|---|
static StartedFrom |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StartedFrom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartedFrom ATP
public static final StartedFrom RAM2
public static final StartedFrom EXECUTOR
public static final StartedFrom ITF_UI
public static final StartedFrom ITF_STUB
public static StartedFrom[] values()
for (StartedFrom c : StartedFrom.values()) System.out.println(c);
public static StartedFrom 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 nullCopyright © 2025. All rights reserved.