public static enum CountryCode.Assignment extends Enum<CountryCode.Assignment>
Enum Constant and Description |
---|
EXCEPTIONALLY_RESERVED
|
INDETERMINATELY_RESERVED
|
NOT_USED
|
OFFICIALLY_ASSIGNED
|
TRANSITIONALLY_RESERVED
|
USER_ASSIGNED
|
Modifier and Type | Method and Description |
---|---|
static CountryCode.Assignment |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountryCode.Assignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountryCode.Assignment OFFICIALLY_ASSIGNED
public static final CountryCode.Assignment USER_ASSIGNED
public static final CountryCode.Assignment EXCEPTIONALLY_RESERVED
public static final CountryCode.Assignment TRANSITIONALLY_RESERVED
public static final CountryCode.Assignment INDETERMINATELY_RESERVED
public static final CountryCode.Assignment NOT_USED
public static CountryCode.Assignment[] values()
for (CountryCode.Assignment c : CountryCode.Assignment.values()) System.out.println(c);
public static CountryCode.Assignment 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 © 2021. All rights reserved.