| Enum Constant and Description |
|---|
LOG_CONS |
LOG_NDELAY |
LOG_NOWAIT |
LOG_ODELAY |
LOG_PERROR |
LOG_PID |
| Modifier and Type | Method and Description |
|---|---|
static Option |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Option LOG_PID
public static final Option LOG_CONS
public static final Option LOG_ODELAY
public static final Option LOG_NDELAY
public static final Option LOG_NOWAIT
public static final Option LOG_PERROR
public static Option[] values()
for (Option c : Option.values()) System.out.println(c);
public static Option valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null