public static enum Process.Status extends Enum<Process.Status>
Enum Constant and Description |
---|
BACKGROUND |
FOREGROUND |
Modifier and Type | Method and Description |
---|---|
static Process.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Process.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Process.Status FOREGROUND
public static final Process.Status BACKGROUND
public static Process.Status[] values()
for (Process.Status c : Process.Status.values()) System.out.println(c);
public static Process.Status 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 © 2023 JBoss by Red Hat. All rights reserved.