@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum ModelQuality extends Enum<ModelQuality>
| Enum Constant and Description |
|---|
CANNOT_DETERMINE_QUALITY |
POOR_QUALITY_DETECTED |
QUALITY_THRESHOLD_MET |
| Modifier and Type | Method and Description |
|---|---|
static ModelQuality |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static ModelQuality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelQuality QUALITY_THRESHOLD_MET
public static final ModelQuality CANNOT_DETERMINE_QUALITY
public static final ModelQuality POOR_QUALITY_DETECTED
public static ModelQuality[] values()
for (ModelQuality c : ModelQuality.values()) System.out.println(c);
public static ModelQuality valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ModelQuality>public static ModelQuality fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.