com.kenai.constantine.platform
Enum Signal

java.lang.Object
  extended by java.lang.Enum<Signal>
      extended by com.kenai.constantine.platform.Signal
All Implemented Interfaces:
Serializable, Comparable<Signal>, Constant

Deprecated.

@Deprecated
public enum Signal
extends Enum<Signal>
implements Constant


Enum Constant Summary
__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
 String description()
          Deprecated.  
 int intValue()
          Deprecated.  
 long longValue()
          Deprecated.  
 String toString()
          Deprecated.  
 int value()
          Deprecated.  
static Signal valueOf(int value)
          Deprecated.  
static Signal valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface jnr.constants.Constant
name
 

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public final int value()
Deprecated. 

intValue

public final int intValue()
Deprecated. 
Specified by:
intValue in interface Constant

longValue

public final long longValue()
Deprecated. 
Specified by:
longValue in interface Constant

description

public final String description()
Deprecated. 

toString

public final String toString()
Deprecated. 
Overrides:
toString in class Enum<Signal>

valueOf

public static final Signal valueOf(int value)
Deprecated. 


Copyright © 2012. All Rights Reserved.