public enum FlowControl extends Enum<FlowControl>
Modifier and Type | Method and Description |
---|---|
int |
getIndex() |
static FlowControl |
getInstance(String flow_control) |
static FlowControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlowControl NONE
public static final FlowControl HARDWARE
public static final FlowControl SOFTWARE
public static FlowControl[] values()
for (FlowControl c : FlowControl.values()) System.out.println(c);
public static FlowControl 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 nullpublic int getIndex()
public static FlowControl getInstance(String flow_control)
Copyright © 2012–2019 Pi4J. All rights reserved.