public static enum DomainValidator.ArrayType extends Enum<DomainValidator.ArrayType>
DomainValidator.updateTLDOverride(ArrayType, String[])
to determine which override array to update / fetch| 枚举常量和说明 |
|---|
COUNTRY_CODE_MINUS
Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs
|
COUNTRY_CODE_PLUS
Update (or get a copy of) the COUNTRY_CODE_TLDS_PLUS table containing additonal country code TLDs
|
COUNTRY_CODE_RO
Get a copy of the country code table
|
GENERIC_MINUS
Update (or get a copy of) the GENERIC_TLDS_MINUS table containing deleted generic TLDs
|
GENERIC_PLUS
Update (or get a copy of) the GENERIC_TLDS_PLUS table containing additonal generic TLDs
|
GENERIC_RO
Get a copy of the generic TLDS table
|
INFRASTRUCTURE_RO
Get a copy of the infrastructure table
|
LOCAL_RO
Get a copy of the local table
|
| 限定符和类型 | 方法和说明 |
|---|---|
static DomainValidator.ArrayType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static DomainValidator.ArrayType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final DomainValidator.ArrayType GENERIC_PLUS
public static final DomainValidator.ArrayType GENERIC_MINUS
public static final DomainValidator.ArrayType COUNTRY_CODE_PLUS
public static final DomainValidator.ArrayType COUNTRY_CODE_MINUS
public static final DomainValidator.ArrayType GENERIC_RO
public static final DomainValidator.ArrayType COUNTRY_CODE_RO
public static final DomainValidator.ArrayType INFRASTRUCTURE_RO
public static final DomainValidator.ArrayType LOCAL_RO
public static DomainValidator.ArrayType[] values()
for (DomainValidator.ArrayType c : DomainValidator.ArrayType.values()) System.out.println(c);
public static DomainValidator.ArrayType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.