public static enum DigitalInput.Spec.Mode extends java.lang.Enum<DigitalInput.Spec.Mode>
| Enum Constant and Description |
|---|
FLOATING
Pin is floating.
|
PULL_DOWN
Internal pull-down resistor is used.
|
PULL_UP
Internal pull-up resistor is used.
|
| Modifier and Type | Method and Description |
|---|---|
static DigitalInput.Spec.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DigitalInput.Spec.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DigitalInput.Spec.Mode FLOATING
public static final DigitalInput.Spec.Mode PULL_UP
public static final DigitalInput.Spec.Mode PULL_DOWN
public static DigitalInput.Spec.Mode[] values()
for (DigitalInput.Spec.Mode c : DigitalInput.Spec.Mode.values()) System.out.println(c);
public static DigitalInput.Spec.Mode 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