public static enum Ascii.Option extends Enum<Ascii.Option>
| Enum Constant and Description |
|---|
NO_NET
Network connection not allowed
|
NO_SERIAL
Serial connection not allowed
|
| Modifier and Type | Method and Description |
|---|---|
static Ascii.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ascii.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ascii.Option NO_NET
public static final Ascii.Option NO_SERIAL
public static Ascii.Option[] values()
for (Ascii.Option c : Ascii.Option.values()) System.out.println(c);
public static Ascii.Option 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 © 2015 LSST. All rights reserved.