Enum Class Autocomplete
- All Implemented Interfaces:
Serializable
,Comparable<Autocomplete>
,Constable
Values for the
autocomplete
attribute.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMiddle name.Address level 1.Address level 2.Address level 3.Address level 4.Address line 1.Address line 2.Address line 3.Date of birth.Day of birth.Month of birth.Year of birth.Middle name as given on the payment instrument.Security code for the payment instrument.Expiration date of the payment instrument.Expiration month of the payment instrument.Expiration year of the payment instrument.Last name as given on the payment instrument.First name as given on the payment instrument.Full name as given on the payment instrument.Code identifying the payment instrument (e.g.Type of payment instrument (e.g.Country.Country name.Current password.E-Mail address.Last name.First name.Prefix or title (e.g.Suffix (e.g.Preferred language; a valid BCP 47 language tag.Full name.A new password (e.g.Nickname.The user must explicitly enter a value into this field for every use, or the document provides its own autocomplete method.The browser is allowed to automatically complete the value based on values that the user has entered during previous uses, howeveron
does not provide any further information about what kind of data the user might be expected to enter.Organization.Job title (e.g.Photograph, icon, or other image corresponding to the company, person, address, or contact information in the other fields associated with this field.Postal code.Gender identity (e.g.Street address.Full telephone number, including country code.Telephone number area code.Telephone number country code.Telephone number, extension code.Telephone number, local part.Telephone number, local prefix.Telephone number, local suffix.Telephone number, without country code.Transaction amount.Transaction currency.Home page or other Web page corresponding to the company, person, address, or contact information in the other fields associated with this field.Username. -
Method Summary
Modifier and TypeMethodDescriptionstatic Autocomplete
Returns the enum constant of this class with the specified name.static Autocomplete[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
The user must explicitly enter a value into this field for every use, or the document provides its own autocomplete method. The browser does not automatically complete the entry. -
ON
The browser is allowed to automatically complete the value based on values that the user has entered during previous uses, howeveron
does not provide any further information about what kind of data the user might be expected to enter. -
NAME
Full name. -
HONORIFIC_PREFIX
Prefix or title (e.g. "Mr.", "Ms.", "Dr.", "Mlle"). -
GIVEN_NAME
First name. -
ADDITIONAL_NAME
Middle name. -
FAMILY_NAME
Last name. -
HONORIFIC_SUFFIX
Suffix (e.g. "Jr.", "B.Sc.", "MBASW", "II"). -
NICKNAME
Nickname. -
EMAIL
E-Mail address. -
USERNAME
Username. -
NEW_PASSWORD
A new password (e.g. when creating an account or changing a password). -
CURRENT_PASSWORD
Current password. -
ORGANIZATION_TITLE
Job title (e.g. "Software Engineer", "Senior Vice President", "Deputy Managing Director"). -
ORGANIZATION
Organization. -
STREET_ADDRESS
Street address. -
ADDRESS_LINE1
Address line 1. -
ADDRESS_LINE2
Address line 2. -
ADDRESS_LINE3
Address line 3. -
ADDRESS_LEVEL1
Address level 1. -
ADDRESS_LEVEL2
Address level 2. -
ADDRESS_LEVEL3
Address level 3. -
ADDRESS_LEVEL4
Address level 4. -
COUNTRY
Country. -
COUNTRY_NAME
Country name. -
POSTAL_CODE
Postal code. -
CC_NAME
Full name as given on the payment instrument. -
CC_GIVEN_NAME
First name as given on the payment instrument. -
CC_ADDITIONAL_NAME
Middle name as given on the payment instrument. -
CC_FAMILY_NAME
Last name as given on the payment instrument. -
CC_NUMBER
Code identifying the payment instrument (e.g. the credit card number). -
CC_EXP
Expiration date of the payment instrument. -
CC_EXP_MONTH
Expiration month of the payment instrument. -
CC_EXP_YEAR
Expiration year of the payment instrument. -
CC_CSC
Security code for the payment instrument. -
CC_TYPE
Type of payment instrument (e.g. Visa). -
TRANSACTION_CURRENCY
Transaction currency. -
TRANSACTION_AMOUNT
Transaction amount. -
LANGUAGE
Preferred language; a valid BCP 47 language tag. -
BDAY
Date of birth. -
BDAY_DAY
Day of birth. -
BDAY_MONTH
Month of birth. -
BDAY_YEAR
Year of birth. -
SEX
Gender identity (e.g. Female, Fa'afafine), free-form text, no newlines. -
TEL
Full telephone number, including country code. -
TEL_COUNTRY_CODE
Telephone number country code. -
TEL_NATIONAL
Telephone number, without country code. -
TEL_AREA_CODE
Telephone number area code. -
TEL_LOCAL
Telephone number, local part. -
TEL_LOCAL_PREFIX
Telephone number, local prefix. -
TEL_LOCAL_SUFFIX
Telephone number, local suffix. -
TEL_EXTENSION
Telephone number, extension code. -
URL
Home page or other Web page corresponding to the company, person, address, or contact information in the other fields associated with this field. -
PHOTO
Photograph, icon, or other image corresponding to the company, person, address, or contact information in the other fields associated with this field.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-