Enum GPIOFunction
- java.lang.Object
-
- java.lang.Enum<GPIOFunction>
-
- com.zentri.zentri_ble_command.GPIOFunction
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<GPIOFunction>
public enum GPIOFunction extends java.lang.Enum<GPIOFunction>
Enum Constant Summary
Enum Constant and Description |
---|
ACTIVITY |
BLE_BLINK |
CONN_GPIO |
FACTORY |
MODE_SEL |
NONE |
PWM |
SHUTDOWN |
SLEEPWAKE |
SPEAKER |
STATUS_LED |
STDIO |
STREAM_GPIO |
Method Summary
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static GPIOFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GPIOFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Enum Constant Detail
-
ACTIVITY
public static final GPIOFunction ACTIVITY
-
BLE_BLINK
public static final GPIOFunction BLE_BLINK
-
CONN_GPIO
public static final GPIOFunction CONN_GPIO
-
FACTORY
public static final GPIOFunction FACTORY
-
MODE_SEL
public static final GPIOFunction MODE_SEL
-
NONE
public static final GPIOFunction NONE
-
PWM
public static final GPIOFunction PWM
-
SHUTDOWN
public static final GPIOFunction SHUTDOWN
-
SLEEPWAKE
public static final GPIOFunction SLEEPWAKE
-
SPEAKER
public static final GPIOFunction SPEAKER
-
STATUS_LED
public static final GPIOFunction STATUS_LED
-
STREAM_GPIO
public static final GPIOFunction STREAM_GPIO
-
STDIO
public static final GPIOFunction STDIO
Method Detail
-
values
public static GPIOFunction[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GPIOFunction c : GPIOFunction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GPIOFunction valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<GPIOFunction>