Package com.spotify.docker.client
Enum DockerClient.Signal
- All Implemented Interfaces:
Serializable
,Comparable<DockerClient.Signal>
- Enclosing interface:
DockerClient
Supported parameters for
DockerClient.killContainer(String, Signal)
).-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSignal number: 14.Signal number: 7.Signal number: 17.Signal number: 18.Signal number: 8.Signal number: 1.Signal number: 4.Signal number: 2.Signal number: 29.Signal number: 6.Signal number: 9.Signal number: 13.Signal number: 27.Signal number: 30.Signal number: 3.Signal number: 11.Signal number: 16.Signal number: 19.Signal number: 15.Signal number: 5.Signal number: 20.Signal number: 21.Signal number: 22.Signal number: 23.Signal number: 10.Signal number: 12.Signal number: 26.Signal number: 28.Signal number: 24.Signal number: 25. -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetName()
static DockerClient.Signal
Returns the enum constant of this type with the specified name.static DockerClient.Signal[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
SIGHUP
Signal number: 1. Hangup (POSIX) -
SIGINT
Signal number: 2. Terminal interrupt (ANSI) -
SIGQUIT
Signal number: 3. Terminal quit (POSIX) -
SIGILL
Signal number: 4. Illegal instruction (ANSI) -
SIGTRAP
Signal number: 5. Trace trap (POSIX) -
SIGIOT
Signal number: 6. IOT trap (4.2 BSD) -
SIGBUS
Signal number: 7. BUS error (4.2 BSD) -
SIGFPE
Signal number: 8. Floating point exception (ANSI) -
SIGKILL
Signal number: 9. Kill (POSIX) -
SIGUSR1
Signal number: 10. User defined signal 1 (POSIX) -
SIGSEGV
Signal number: 11. Invalid memory segment address (ANSI) -
SIGUSR2
Signal number: 12. User defined signal 2 (POSIX) -
SIGPIPE
Signal number: 13. Write on a pipe with no reader, broken pipe (POSIX) -
SIGALRM
Signal number: 14. Alarm clock (POSIX) -
SIGTERM
Signal number: 15. Termination (ANSI) -
SIGSTKFLT
Signal number: 16. Stack fault. -
SIGCHLD
Signal number: 17. Child process has stopped or exited, changed (POSIX) -
SIGCONT
Signal number: 18. Continue executing if stopped (POSIX) -
SIGSTOP
Signal number: 19. Stop executing (POSIX) -
SIGTSTP
Signal number: 20. Terminal stop signal (POSIX) -
SIGTTIN
Signal number: 21. Background process trying to read from TTY -
SIGTTOU
Signal number: 22. Background process trying to write to TTY -
SIGURG
Signal number: 23. Urgen condition on socket (4.2 BSD) -
SIGXCPU
Signal number: 24. CPU limit exceeded (4.2 BSD) -
SIGXFSZ
Signal number: 25. File size limit exceeded (4.2 BSD) -
SIGVTALRM
Signal number: 26. Virtual alarm clock (4.2 BSD) -
SIGPROF
Signal number: 27. Profiling alarm clock (4.2 BSD) -
SIGWINCH
Signal number: 28. Window size change (4.3 BSD, Sun) -
SIGIO
Signal number: 29. I/O now possible (4.2 BSD) -
SIGPWR
Signal number: 30. Power failure restart (System V)
-
-
Field Details
-
name
-
-
Constructor Details
-
Signal
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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 nameNullPointerException
- if the argument is null
-
getName
-