Package com.banuba.sdk.types
Enum ActionUnitsIndices
- java.lang.Object
-
- java.lang.Enum<ActionUnitsIndices>
-
- com.banuba.sdk.types.ActionUnitsIndices
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ActionUnitsIndices>
public enum ActionUnitsIndices extends java.lang.Enum<ActionUnitsIndices>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActionUnitsIndices
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ActionUnitsIndices[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BROWDOWNLEFT
public static final ActionUnitsIndices BROWDOWNLEFT
0
-
BROWDOWNRIGHT
public static final ActionUnitsIndices BROWDOWNRIGHT
-
BROWINNERUP
public static final ActionUnitsIndices BROWINNERUP
-
BROWOUTERUPLEFT
public static final ActionUnitsIndices BROWOUTERUPLEFT
-
BROWOUTERUPRIGHT
public static final ActionUnitsIndices BROWOUTERUPRIGHT
-
CHEEKPUFF
public static final ActionUnitsIndices CHEEKPUFF
-
CHEEKSQUINTLEFT
public static final ActionUnitsIndices CHEEKSQUINTLEFT
-
CHEEKSQUINTRIGHT
public static final ActionUnitsIndices CHEEKSQUINTRIGHT
-
JAWFORWARD
public static final ActionUnitsIndices JAWFORWARD
-
JAWLEFT
public static final ActionUnitsIndices JAWLEFT
9
-
JAWRIGHT
public static final ActionUnitsIndices JAWRIGHT
-
JAWOPEN
public static final ActionUnitsIndices JAWOPEN
-
MOUTHCLOSE
public static final ActionUnitsIndices MOUTHCLOSE
-
MOUTHFUNNEL
public static final ActionUnitsIndices MOUTHFUNNEL
-
MOUTHPUCKER
public static final ActionUnitsIndices MOUTHPUCKER
-
MOUTHLEFT
public static final ActionUnitsIndices MOUTHLEFT
-
MOUTHRIGHT
public static final ActionUnitsIndices MOUTHRIGHT
-
MOUTHSMILELEFT
public static final ActionUnitsIndices MOUTHSMILELEFT
-
MOUTHSMILERIGHT
public static final ActionUnitsIndices MOUTHSMILERIGHT
-
MOUTHDIMPLELEFT
public static final ActionUnitsIndices MOUTHDIMPLELEFT
19
-
MOUTHDIMPLERIGHT
public static final ActionUnitsIndices MOUTHDIMPLERIGHT
-
MOUTHROLLUPPER
public static final ActionUnitsIndices MOUTHROLLUPPER
-
MOUTHSHRUGUPPER
public static final ActionUnitsIndices MOUTHSHRUGUPPER
-
MOUTHSHRUGLOWER
public static final ActionUnitsIndices MOUTHSHRUGLOWER
-
MOUTHROLLLOWER
public static final ActionUnitsIndices MOUTHROLLLOWER
-
MOUTHFROWNLEFT
public static final ActionUnitsIndices MOUTHFROWNLEFT
-
MOUTHFROWNRIGHT
public static final ActionUnitsIndices MOUTHFROWNRIGHT
-
MOUTHUPPERUPLEFT
public static final ActionUnitsIndices MOUTHUPPERUPLEFT
-
MOUTHUPPERUPRIGHT
public static final ActionUnitsIndices MOUTHUPPERUPRIGHT
-
MOUTHLOWERDOWNLEFT
public static final ActionUnitsIndices MOUTHLOWERDOWNLEFT
29
-
MOUTHLOWERDOWNRIGHT
public static final ActionUnitsIndices MOUTHLOWERDOWNRIGHT
-
NOSESNEERLEFT
public static final ActionUnitsIndices NOSESNEERLEFT
-
NOSESNEERRIGHT
public static final ActionUnitsIndices NOSESNEERRIGHT
-
MOUTHPRESSLEFT
public static final ActionUnitsIndices MOUTHPRESSLEFT
-
MOUTHPRESSRIGHT
public static final ActionUnitsIndices MOUTHPRESSRIGHT
-
MOUTHSTRETCHLEFT
public static final ActionUnitsIndices MOUTHSTRETCHLEFT
-
MOUTHSTRETCHRIGHT
public static final ActionUnitsIndices MOUTHSTRETCHRIGHT
-
EYEBLINKLEFT
public static final ActionUnitsIndices EYEBLINKLEFT
-
EYEBLINKRIGHT
public static final ActionUnitsIndices EYEBLINKRIGHT
-
EYEWIDELEFT
public static final ActionUnitsIndices EYEWIDELEFT
39
-
EYEWIDERIGHT
public static final ActionUnitsIndices EYEWIDERIGHT
-
EYESQUINTLEFT
public static final ActionUnitsIndices EYESQUINTLEFT
-
EYESQUINTRIGHT
public static final ActionUnitsIndices EYESQUINTRIGHT
-
EYELOOKDOWNLEFT
public static final ActionUnitsIndices EYELOOKDOWNLEFT
-
EYELOOKINLEFT
public static final ActionUnitsIndices EYELOOKINLEFT
-
EYELOOKOUTLEFT
public static final ActionUnitsIndices EYELOOKOUTLEFT
-
EYELOOKUPLEFT
public static final ActionUnitsIndices EYELOOKUPLEFT
-
EYELOOKDOWNRIGHT
public static final ActionUnitsIndices EYELOOKDOWNRIGHT
-
EYELOOKINRIGHT
public static final ActionUnitsIndices EYELOOKINRIGHT
-
EYELOOKOUTRIGHT
public static final ActionUnitsIndices EYELOOKOUTRIGHT
-
EYELOOKUPRIGHT
public static final ActionUnitsIndices EYELOOKUPRIGHT
50
-
TOTAL_AU_COUNT
public static final ActionUnitsIndices TOTAL_AU_COUNT
51
-
-
Method Detail
-
values
public static ActionUnitsIndices[] 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 (ActionUnitsIndices c : ActionUnitsIndices.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionUnitsIndices 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
-
-