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