@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum Engine extends Enum<Engine>
| Enum Constant and Description | 
|---|
| Generative | 
| LongForm | 
| Neural | 
| Standard | 
| Modifier and Type | Method and Description | 
|---|---|
| static Engine | fromValue(String value)Use this in place of valueOf. | 
| String | toString() | 
| static Engine | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Engine[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Engine Standard
public static final Engine Neural
public static final Engine LongForm
public static final Engine Generative
public static Engine[] values()
for (Engine c : Engine.values()) System.out.println(c);
public static Engine 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 static Engine fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.