
static enum Main.sysexits extends Enum<Main.sysexits>
| Enum Constant and Description |
|---|
EX_CANTCREAT |
EX_DATAERR |
EX_IOERR |
EX_NOINPUT |
EX_UNAVAILABLE |
EX_USAGE |
| Modifier and Type | Field and Description |
|---|---|
(package private) int |
code |
| Modifier and Type | Method and Description |
|---|---|
static Main.sysexits |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Main.sysexits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Main.sysexits EX_USAGE
public static final Main.sysexits EX_DATAERR
public static final Main.sysexits EX_NOINPUT
public static final Main.sysexits EX_UNAVAILABLE
public static final Main.sysexits EX_CANTCREAT
public static final Main.sysexits EX_IOERR
public static Main.sysexits[] values()
for (Main.sysexits c : Main.sysexits.values()) System.out.println(c);
public static Main.sysexits 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 © 2014–2017 B3Partners B.V.. All rights reserved.