public static enum Address.FiasLevel extends Enum<Address.FiasLevel>
| Enum Constant and Description |
|---|
AREA
Район
|
CITY
Город
|
COUNTRY
Страна
|
FOREIGN_OR_EMPTY
Иностранный или пустой
|
HOUSE
Дом
|
REGION
Регион
|
SETTLEMENT
Населенный пункт
|
STREET
Улица
|
| Modifier and Type | Method and Description |
|---|---|
static Address.FiasLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Address.FiasLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Address.FiasLevel COUNTRY
public static final Address.FiasLevel REGION
public static final Address.FiasLevel AREA
public static final Address.FiasLevel CITY
public static final Address.FiasLevel SETTLEMENT
public static final Address.FiasLevel STREET
public static final Address.FiasLevel HOUSE
public static final Address.FiasLevel FOREIGN_OR_EMPTY
public static Address.FiasLevel[] values()
for (Address.FiasLevel c : Address.FiasLevel.values()) System.out.println(c);
public static Address.FiasLevel 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 © 2016. All rights reserved.