public enum MicrochipPotentiometerNonVolatileMode extends Enum<MicrochipPotentiometerNonVolatileMode>
Enum Constant and Description |
---|
NONVOLATILE_ONLY
read and write to non-volatile-wiper
|
VOLATILE_AND_NONVOLATILE
read and write to both volatile- and non-volatile-wipers
|
VOLATILE_ONLY
read and write to volatile-wiper
|
Modifier and Type | Method and Description |
---|---|
static MicrochipPotentiometerNonVolatileMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MicrochipPotentiometerNonVolatileMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MicrochipPotentiometerNonVolatileMode VOLATILE_ONLY
public static final MicrochipPotentiometerNonVolatileMode NONVOLATILE_ONLY
public static final MicrochipPotentiometerNonVolatileMode VOLATILE_AND_NONVOLATILE
public static MicrochipPotentiometerNonVolatileMode[] values()
for (MicrochipPotentiometerNonVolatileMode c : MicrochipPotentiometerNonVolatileMode.values()) System.out.println(c);
public static MicrochipPotentiometerNonVolatileMode 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 © 2012–2016 Pi4J. All rights reserved.