public enum Autocomplete extends Enum<Autocomplete>
autocomplete
attribute.Enum Constant and Description |
---|
ADDITIONAL_NAME
Middle name.
|
ADDRESS_LEVEL1
Address level 1.
|
ADDRESS_LEVEL2
Address level 2.
|
ADDRESS_LEVEL3
Address level 3.
|
ADDRESS_LEVEL4
Address level 4.
|
ADDRESS_LINE1
Address line 1.
|
ADDRESS_LINE2
Address line 2.
|
ADDRESS_LINE3
Address line 3.
|
BDAY
Date of birth.
|
BDAY_DAY
Day of birth.
|
BDAY_MONTH
Month of birth.
|
BDAY_YEAR
Year of birth.
|
CC_ADDITIONAL_NAME
Middle name as given on the payment instrument.
|
CC_CSC
Security code for the payment instrument.
|
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_FAMILY_NAME
Last name as given on the payment instrument.
|
CC_GIVEN_NAME
First name as given on the payment instrument.
|
CC_NAME
Full name as given on the payment instrument.
|
CC_NUMBER
Code identifying the payment instrument (e.g.
|
CC_TYPE
Type of payment instrument (e.g.
|
COUNTRY
Country.
|
COUNTRY_NAME
Country name.
|
CURRENT_PASSWORD
Current password.
|
EMAIL
E-Mail address.
|
FAMILY_NAME
Last name.
|
GIVEN_NAME
First name.
|
HONORIFIC_PREFIX
Prefix or title (e.g.
|
HONORIFIC_SUFFIX
Suffix (e.g.
|
LANGUAGE
Preferred language; a valid BCP 47 language tag.
|
NAME
Full name.
|
NEW_PASSWORD
A new password (e.g.
|
NICKNAME
Nickname.
|
OFF
The user must explicitly enter a value into this field for every use, or
the document provides its own autocomplete method.
|
ON
The browser is allowed to automatically complete the value based on
values that the user has entered during previous uses, however
on
does not provide any further information about what kind of data the user
might be expected to enter. |
ORGANIZATION
Organization.
|
ORGANIZATION_TITLE
Job title (e.g.
|
PHOTO
Photograph, icon, or other image corresponding to the company, person,
address, or contact information in the other fields associated with this
field.
|
POSTAL_CODE
Postal code.
|
SEX
Gender identity (e.g.
|
STREET_ADDRESS
Street address.
|
TEL
Full telephone number, including country code.
|
TEL_AREA_CODE
Telephone number area code.
|
TEL_COUNTRY_CODE
Telephone number country code.
|
TEL_EXTENSION
Telephone number, extension code.
|
TEL_LOCAL
Telephone number, local part.
|
TEL_LOCAL_PREFIX
Telephone number, local prefix.
|
TEL_LOCAL_SUFFIX
Telephone number, local suffix.
|
TEL_NATIONAL
Telephone number, without country code.
|
TRANSACTION_AMOUNT
Transaction amount.
|
TRANSACTION_CURRENCY
Transaction currency.
|
URL
Home page or other Web page corresponding to the company, person,
address, or contact information in the other fields associated with this
field.
|
USERNAME
Username.
|
Modifier and Type | Method and Description |
---|---|
static Autocomplete |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Autocomplete[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Autocomplete OFF
public static final Autocomplete ON
on
does not provide any further information about what kind of data the user
might be expected to enter.public static final Autocomplete NAME
public static final Autocomplete HONORIFIC_PREFIX
public static final Autocomplete GIVEN_NAME
public static final Autocomplete ADDITIONAL_NAME
public static final Autocomplete FAMILY_NAME
public static final Autocomplete HONORIFIC_SUFFIX
public static final Autocomplete NICKNAME
public static final Autocomplete EMAIL
public static final Autocomplete USERNAME
public static final Autocomplete NEW_PASSWORD
public static final Autocomplete CURRENT_PASSWORD
public static final Autocomplete ORGANIZATION_TITLE
public static final Autocomplete ORGANIZATION
public static final Autocomplete STREET_ADDRESS
public static final Autocomplete ADDRESS_LINE1
public static final Autocomplete ADDRESS_LINE2
public static final Autocomplete ADDRESS_LINE3
public static final Autocomplete ADDRESS_LEVEL1
public static final Autocomplete ADDRESS_LEVEL2
public static final Autocomplete ADDRESS_LEVEL3
public static final Autocomplete ADDRESS_LEVEL4
public static final Autocomplete COUNTRY
public static final Autocomplete COUNTRY_NAME
public static final Autocomplete POSTAL_CODE
public static final Autocomplete CC_NAME
public static final Autocomplete CC_GIVEN_NAME
public static final Autocomplete CC_ADDITIONAL_NAME
public static final Autocomplete CC_FAMILY_NAME
public static final Autocomplete CC_NUMBER
public static final Autocomplete CC_EXP
public static final Autocomplete CC_EXP_MONTH
public static final Autocomplete CC_EXP_YEAR
public static final Autocomplete CC_CSC
public static final Autocomplete CC_TYPE
public static final Autocomplete TRANSACTION_CURRENCY
public static final Autocomplete TRANSACTION_AMOUNT
public static final Autocomplete LANGUAGE
public static final Autocomplete BDAY
public static final Autocomplete BDAY_DAY
public static final Autocomplete BDAY_MONTH
public static final Autocomplete BDAY_YEAR
public static final Autocomplete SEX
public static final Autocomplete TEL
public static final Autocomplete TEL_COUNTRY_CODE
public static final Autocomplete TEL_NATIONAL
public static final Autocomplete TEL_AREA_CODE
public static final Autocomplete TEL_LOCAL
public static final Autocomplete TEL_LOCAL_PREFIX
public static final Autocomplete TEL_LOCAL_SUFFIX
public static final Autocomplete TEL_EXTENSION
public static final Autocomplete URL
public static final Autocomplete PHOTO
public static Autocomplete[] values()
for (Autocomplete c : Autocomplete.values()) System.out.println(c);
public static Autocomplete 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 nullCopyright © 2023. All rights reserved.