Enum RequiredSignUpAttributesElement
- java.lang.Object
-
- java.lang.Enum<RequiredSignUpAttributesElement>
-
- software.amazon.awssdk.services.amplifybackend.model.RequiredSignUpAttributesElement
-
- All Implemented Interfaces:
Serializable,Comparable<RequiredSignUpAttributesElement>
@Generated("software.amazon.awssdk:codegen") public enum RequiredSignUpAttributesElement extends Enum<RequiredSignUpAttributesElement>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADDRESSBIRTHDATEEMAILFAMILY_NAMEGENDERGIVEN_NAMELOCALEMIDDLE_NAMENAMENICKNAMEPHONE_NUMBERPICTUREPREFERRED_USERNAMEPROFILEUNKNOWN_TO_SDK_VERSIONUPDATED_ATWEBSITEZONE_INFO
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RequiredSignUpAttributesElementfromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<RequiredSignUpAttributesElement>knownValues()StringtoString()static RequiredSignUpAttributesElementvalueOf(String name)Returns the enum constant of this type with the specified name.static RequiredSignUpAttributesElement[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDRESS
public static final RequiredSignUpAttributesElement ADDRESS
-
BIRTHDATE
public static final RequiredSignUpAttributesElement BIRTHDATE
-
EMAIL
public static final RequiredSignUpAttributesElement EMAIL
-
FAMILY_NAME
public static final RequiredSignUpAttributesElement FAMILY_NAME
-
GENDER
public static final RequiredSignUpAttributesElement GENDER
-
GIVEN_NAME
public static final RequiredSignUpAttributesElement GIVEN_NAME
-
LOCALE
public static final RequiredSignUpAttributesElement LOCALE
-
MIDDLE_NAME
public static final RequiredSignUpAttributesElement MIDDLE_NAME
-
NAME
public static final RequiredSignUpAttributesElement NAME
-
NICKNAME
public static final RequiredSignUpAttributesElement NICKNAME
-
PHONE_NUMBER
public static final RequiredSignUpAttributesElement PHONE_NUMBER
-
PICTURE
public static final RequiredSignUpAttributesElement PICTURE
-
PREFERRED_USERNAME
public static final RequiredSignUpAttributesElement PREFERRED_USERNAME
-
PROFILE
public static final RequiredSignUpAttributesElement PROFILE
-
UPDATED_AT
public static final RequiredSignUpAttributesElement UPDATED_AT
-
WEBSITE
public static final RequiredSignUpAttributesElement WEBSITE
-
ZONE_INFO
public static final RequiredSignUpAttributesElement ZONE_INFO
-
UNKNOWN_TO_SDK_VERSION
public static final RequiredSignUpAttributesElement UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static RequiredSignUpAttributesElement[] 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 (RequiredSignUpAttributesElement c : RequiredSignUpAttributesElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RequiredSignUpAttributesElement 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<RequiredSignUpAttributesElement>
-
fromValue
public static RequiredSignUpAttributesElement 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:
- RequiredSignUpAttributesElement corresponding to the value
-
knownValues
public static Set<RequiredSignUpAttributesElement> 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 knownRequiredSignUpAttributesElements
-
-