public static enum CountryCode.Assignment extends Enum<CountryCode.Assignment>
| 枚举常量和说明 |
|---|
EXCEPTIONALLY_RESERVED
|
INDETERMINATELY_RESERVED
|
NOT_USED
|
OFFICIALLY_ASSIGNED
|
TRANSITIONALLY_RESERVED
|
USER_ASSIGNED
|
public static final CountryCode.Assignment OFFICIALLY_ASSIGNED
Assigned to a country, territory, or area of geographical interest.
public static final CountryCode.Assignment USER_ASSIGNED
Free for assignment at the disposal of users.
public static final CountryCode.Assignment EXCEPTIONALLY_RESERVED
Reserved on request for restricted use.
public static final CountryCode.Assignment TRANSITIONALLY_RESERVED
Deleted from ISO 3166-1 but reserved transitionally.
public static final CountryCode.Assignment INDETERMINATELY_RESERVED
Used in coding systems associated with ISO 3166-1.
public static final CountryCode.Assignment NOT_USED
Not used in ISO 3166-1 in deference to international property organization names.
public static CountryCode.Assignment[] values()
for (CountryCode.Assignment c : CountryCode.Assignment.values()) System.out.println(c);
public static CountryCode.Assignment valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2020. All rights reserved.