Enum BlindsFeeder.OcrAction
- java.lang.Object
-
- java.lang.Enum<BlindsFeeder.OcrAction>
-
- org.openpnp.machine.reference.feeder.BlindsFeeder.OcrAction
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BlindsFeeder.OcrAction>
- Enclosing class:
- BlindsFeeder
public static enum BlindsFeeder.OcrAction extends java.lang.Enum<BlindsFeeder.OcrAction>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ChangePart
CheckCorrect
None
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BlindsFeeder.OcrAction
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlindsFeeder.OcrAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final BlindsFeeder.OcrAction None
-
CheckCorrect
public static final BlindsFeeder.OcrAction CheckCorrect
-
ChangePart
public static final BlindsFeeder.OcrAction ChangePart
-
-
Method Detail
-
values
public static BlindsFeeder.OcrAction[] 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 (BlindsFeeder.OcrAction c : BlindsFeeder.OcrAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BlindsFeeder.OcrAction 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
-
-