Package com.appliedrec.verid.core2
Enum Bearing
- java.lang.Object
-
- java.lang.Enum<Bearing>
-
- com.appliedrec.verid.core2.Bearing
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOWN
Face turned downLEFT
Face turned leftLEFT_DOWN
Face turned left and downLEFT_UP
Face turned left and upRIGHT
Face turned rightRIGHT_DOWN
Face turned right and downRIGHT_UP
Face turned right an upSTRAIGHT
Face turned straight to the cameraUP
Face turned up
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Bearing
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Bearing[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRAIGHT
public static final Bearing STRAIGHT
Face turned straight to the camera- Since:
- 1.0.0
-
UP
public static final Bearing UP
Face turned up- Since:
- 1.0.0
-
RIGHT_UP
public static final Bearing RIGHT_UP
Face turned right an up- Since:
- 1.0.0
-
RIGHT
public static final Bearing RIGHT
Face turned right- Since:
- 1.0.0
-
RIGHT_DOWN
public static final Bearing RIGHT_DOWN
Face turned right and down- Since:
- 1.0.0
-
DOWN
public static final Bearing DOWN
Face turned down- Since:
- 1.0.0
-
LEFT_DOWN
public static final Bearing LEFT_DOWN
Face turned left and down- Since:
- 1.0.0
-
LEFT
public static final Bearing LEFT
Face turned left- Since:
- 1.0.0
-
LEFT_UP
public static final Bearing LEFT_UP
Face turned left and up- Since:
- 1.0.0
-
-
Method Detail
-
values
public static Bearing[] 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 (Bearing c : Bearing.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bearing 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
-
-