- java.lang.Object
-
- java.lang.Enum<FlowControl>
-
- com.pi4j.io.serial.FlowControl
-
- All Implemented Interfaces:
Serializable,Comparable<FlowControl>
public enum FlowControl extends Enum<FlowControl>
FlowControl class.
- Version:
- $Id: $Id
- Author:
- Robert Savage (http://www.savagehomeautomation.com)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Getter for the fieldindex.static FlowControlgetInstance(int control)getInstance.static FlowControlgetInstance(String flow_control)getInstance.static FlowControlparse(String parity)parse.static FlowControlvalueOf(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.
-
-
-
Enum Constant Detail
-
NONE
public static final FlowControl NONE
-
HARDWARE
public static final FlowControl HARDWARE
-
SOFTWARE
public static final FlowControl SOFTWARE
-
-
Method Detail
-
values
public static FlowControl[] 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 (FlowControl c : FlowControl.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowControl valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getIndex
public int getIndex()
Getter for the field
index.- Returns:
- a int.
-
getInstance
public static FlowControl getInstance(String flow_control)
getInstance.
- Parameters:
flow_control- aStringobject.- Returns:
- a
FlowControlobject.
-
getInstance
public static FlowControl getInstance(int control)
getInstance.
- Parameters:
control- a int.- Returns:
- a
FlowControlobject.
-
parse
public static FlowControl parse(String parity)
parse.
- Parameters:
parity- aStringobject.- Returns:
- a
FlowControlobject.
-
-