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