Enum LandmarkType
- java.lang.Object
-
- java.lang.Enum<LandmarkType>
-
- software.amazon.awssdk.services.rekognition.model.LandmarkType
-
- All Implemented Interfaces:
Serializable,Comparable<LandmarkType>
@Generated("software.amazon.awssdk:codegen") public enum LandmarkType extends Enum<LandmarkType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LandmarkTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<LandmarkType>knownValues()StringtoString()static LandmarkTypevalueOf(String name)Returns the enum constant of this type with the specified name.static LandmarkType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EYE_LEFT
public static final LandmarkType EYE_LEFT
-
EYE_RIGHT
public static final LandmarkType EYE_RIGHT
-
NOSE
public static final LandmarkType NOSE
-
MOUTH_LEFT
public static final LandmarkType MOUTH_LEFT
-
MOUTH_RIGHT
public static final LandmarkType MOUTH_RIGHT
-
LEFT_EYE_BROW_LEFT
public static final LandmarkType LEFT_EYE_BROW_LEFT
-
LEFT_EYE_BROW_RIGHT
public static final LandmarkType LEFT_EYE_BROW_RIGHT
-
LEFT_EYE_BROW_UP
public static final LandmarkType LEFT_EYE_BROW_UP
-
RIGHT_EYE_BROW_LEFT
public static final LandmarkType RIGHT_EYE_BROW_LEFT
-
RIGHT_EYE_BROW_RIGHT
public static final LandmarkType RIGHT_EYE_BROW_RIGHT
-
RIGHT_EYE_BROW_UP
public static final LandmarkType RIGHT_EYE_BROW_UP
-
LEFT_EYE_LEFT
public static final LandmarkType LEFT_EYE_LEFT
-
LEFT_EYE_RIGHT
public static final LandmarkType LEFT_EYE_RIGHT
-
LEFT_EYE_UP
public static final LandmarkType LEFT_EYE_UP
-
LEFT_EYE_DOWN
public static final LandmarkType LEFT_EYE_DOWN
-
RIGHT_EYE_LEFT
public static final LandmarkType RIGHT_EYE_LEFT
-
RIGHT_EYE_RIGHT
public static final LandmarkType RIGHT_EYE_RIGHT
-
RIGHT_EYE_UP
public static final LandmarkType RIGHT_EYE_UP
-
RIGHT_EYE_DOWN
public static final LandmarkType RIGHT_EYE_DOWN
-
NOSE_LEFT
public static final LandmarkType NOSE_LEFT
-
NOSE_RIGHT
public static final LandmarkType NOSE_RIGHT
-
MOUTH_UP
public static final LandmarkType MOUTH_UP
-
MOUTH_DOWN
public static final LandmarkType MOUTH_DOWN
-
LEFT_PUPIL
public static final LandmarkType LEFT_PUPIL
-
RIGHT_PUPIL
public static final LandmarkType RIGHT_PUPIL
-
UPPER_JAWLINE_LEFT
public static final LandmarkType UPPER_JAWLINE_LEFT
-
MID_JAWLINE_LEFT
public static final LandmarkType MID_JAWLINE_LEFT
-
CHIN_BOTTOM
public static final LandmarkType CHIN_BOTTOM
-
MID_JAWLINE_RIGHT
public static final LandmarkType MID_JAWLINE_RIGHT
-
UPPER_JAWLINE_RIGHT
public static final LandmarkType UPPER_JAWLINE_RIGHT
-
UNKNOWN_TO_SDK_VERSION
public static final LandmarkType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static LandmarkType[] 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 (LandmarkType c : LandmarkType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LandmarkType 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<LandmarkType>
-
fromValue
public static LandmarkType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- LandmarkType corresponding to the value
-
knownValues
public static Set<LandmarkType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownLandmarkTypes
-
-