Package com.kenai.constantine.platform
Enum Signal
- java.lang.Object
-
- java.lang.Enum<Signal>
-
- com.kenai.constantine.platform.Signal
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __UNKNOWN_CONSTANT__
Deprecated.NSIG
Deprecated.SIGABRT
Deprecated.SIGALRM
Deprecated.SIGBUS
Deprecated.SIGCHLD
Deprecated.SIGCLD
Deprecated.SIGCONT
Deprecated.SIGFPE
Deprecated.SIGHUP
Deprecated.SIGILL
Deprecated.SIGINT
Deprecated.SIGIO
Deprecated.SIGIOT
Deprecated.SIGKILL
Deprecated.SIGPIPE
Deprecated.SIGPOLL
Deprecated.SIGPROF
Deprecated.SIGPWR
Deprecated.SIGQUIT
Deprecated.SIGRTMAX
Deprecated.SIGRTMIN
Deprecated.SIGSEGV
Deprecated.SIGSTKFLT
Deprecated.SIGSTOP
Deprecated.SIGSYS
Deprecated.SIGTERM
Deprecated.SIGTRAP
Deprecated.SIGTSTP
Deprecated.SIGTTIN
Deprecated.SIGTTOU
Deprecated.SIGUNUSED
Deprecated.SIGURG
Deprecated.SIGUSR1
Deprecated.SIGUSR2
Deprecated.SIGVTALRM
Deprecated.SIGWINCH
Deprecated.SIGXCPU
Deprecated.SIGXFSZ
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
defined()
Deprecated.java.lang.String
description()
Deprecated.int
intValue()
Deprecated.long
longValue()
Deprecated.java.lang.String
toString()
Deprecated.int
value()
Deprecated.static Signal
valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name.static Signal
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static Signal[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SIGHUP
public static final Signal SIGHUP
Deprecated.
-
SIGINT
public static final Signal SIGINT
Deprecated.
-
SIGQUIT
public static final Signal SIGQUIT
Deprecated.
-
SIGILL
public static final Signal SIGILL
Deprecated.
-
SIGTRAP
public static final Signal SIGTRAP
Deprecated.
-
SIGABRT
public static final Signal SIGABRT
Deprecated.
-
SIGIOT
public static final Signal SIGIOT
Deprecated.
-
SIGBUS
public static final Signal SIGBUS
Deprecated.
-
SIGFPE
public static final Signal SIGFPE
Deprecated.
-
SIGKILL
public static final Signal SIGKILL
Deprecated.
-
SIGUSR1
public static final Signal SIGUSR1
Deprecated.
-
SIGSEGV
public static final Signal SIGSEGV
Deprecated.
-
SIGUSR2
public static final Signal SIGUSR2
Deprecated.
-
SIGPIPE
public static final Signal SIGPIPE
Deprecated.
-
SIGALRM
public static final Signal SIGALRM
Deprecated.
-
SIGTERM
public static final Signal SIGTERM
Deprecated.
-
SIGSTKFLT
public static final Signal SIGSTKFLT
Deprecated.
-
SIGCLD
public static final Signal SIGCLD
Deprecated.
-
SIGCHLD
public static final Signal SIGCHLD
Deprecated.
-
SIGCONT
public static final Signal SIGCONT
Deprecated.
-
SIGSTOP
public static final Signal SIGSTOP
Deprecated.
-
SIGTSTP
public static final Signal SIGTSTP
Deprecated.
-
SIGTTIN
public static final Signal SIGTTIN
Deprecated.
-
SIGTTOU
public static final Signal SIGTTOU
Deprecated.
-
SIGURG
public static final Signal SIGURG
Deprecated.
-
SIGXCPU
public static final Signal SIGXCPU
Deprecated.
-
SIGXFSZ
public static final Signal SIGXFSZ
Deprecated.
-
SIGVTALRM
public static final Signal SIGVTALRM
Deprecated.
-
SIGPROF
public static final Signal SIGPROF
Deprecated.
-
SIGWINCH
public static final Signal SIGWINCH
Deprecated.
-
SIGPOLL
public static final Signal SIGPOLL
Deprecated.
-
SIGIO
public static final Signal SIGIO
Deprecated.
-
SIGPWR
public static final Signal SIGPWR
Deprecated.
-
SIGSYS
public static final Signal SIGSYS
Deprecated.
-
SIGUNUSED
public static final Signal SIGUNUSED
Deprecated.
-
SIGRTMIN
public static final Signal SIGRTMIN
Deprecated.
-
SIGRTMAX
public static final Signal SIGRTMAX
Deprecated.
-
NSIG
public static final Signal NSIG
Deprecated.
-
__UNKNOWN_CONSTANT__
public static final Signal __UNKNOWN_CONSTANT__
Deprecated.
-
-
Method Detail
-
values
public static Signal[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Signal c : Signal.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Signal valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
description
public final java.lang.String description()
Deprecated.
-
toString
public final java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Enum<Signal>
-
valueOf
public static final Signal valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-