public static enum Multidrop.ConnType extends Enum<Multidrop.ConnType>
| Enum Constant and Description |
|---|
FTDI
FTDI USB adapter
|
SERIAL
Serial port
|
| Modifier and Type | Method and Description |
|---|---|
static Multidrop.ConnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Multidrop.ConnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Multidrop.ConnType FTDI
public static final Multidrop.ConnType SERIAL
public static Multidrop.ConnType[] values()
for (Multidrop.ConnType c : Multidrop.ConnType.values()) System.out.println(c);
public static Multidrop.ConnType 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 © 2019 LSST. All rights reserved.