Package com.banuba.sdk.scene
Enum SegmentationMaskType
- java.lang.Object
-
- java.lang.Enum<SegmentationMaskType>
-
- com.banuba.sdk.scene.SegmentationMaskType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SegmentationMaskType>
public enum SegmentationMaskType extends java.lang.Enum<SegmentationMaskType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND
BODY
FACE
FACE_SKIN
HAIR
HAIR_STRAND
L_BROW
L_EYE
L_EYE_CORNEOSCLERA
L_EYE_PUPIL
LIPS
LIPS_SHINING
NAILS
NECK
OCCLUSION
R_BROW
R_EYE
R_EYE_CORNEOSCLERA
R_EYE_PUPIL
SKIN
TEETH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SegmentationMaskType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SegmentationMaskType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BACKGROUND
public static final SegmentationMaskType BACKGROUND
-
HAIR
public static final SegmentationMaskType HAIR
-
SKIN
public static final SegmentationMaskType SKIN
-
LIPS
public static final SegmentationMaskType LIPS
-
TEETH
public static final SegmentationMaskType TEETH
-
L_EYE
public static final SegmentationMaskType L_EYE
-
R_EYE
public static final SegmentationMaskType R_EYE
-
L_EYE_PUPIL
public static final SegmentationMaskType L_EYE_PUPIL
-
R_EYE_PUPIL
public static final SegmentationMaskType R_EYE_PUPIL
-
L_EYE_CORNEOSCLERA
public static final SegmentationMaskType L_EYE_CORNEOSCLERA
-
R_EYE_CORNEOSCLERA
public static final SegmentationMaskType R_EYE_CORNEOSCLERA
-
LIPS_SHINING
public static final SegmentationMaskType LIPS_SHINING
-
OCCLUSION
public static final SegmentationMaskType OCCLUSION
-
BODY
public static final SegmentationMaskType BODY
-
HAIR_STRAND
public static final SegmentationMaskType HAIR_STRAND
-
NECK
public static final SegmentationMaskType NECK
-
L_BROW
public static final SegmentationMaskType L_BROW
-
R_BROW
public static final SegmentationMaskType R_BROW
-
NAILS
public static final SegmentationMaskType NAILS
-
FACE
public static final SegmentationMaskType FACE
-
FACE_SKIN
public static final SegmentationMaskType FACE_SKIN
-
-
Method Detail
-
values
public static SegmentationMaskType[] 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 (SegmentationMaskType c : SegmentationMaskType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SegmentationMaskType 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
-
-