public enum DataType extends Enum<DataType>
| Enum Constant and Description |
|---|
AREA_NAME_1
Data has centroids at the areaName1 (state or province) level
|
AREA_NAME_2
Data has centroids at the areaName2 (county or district) level
|
AREA_NAME_3
Data has centroids at the areaName3 (city or town) level
|
AREA_NAME_4
Data has centroids at the areaName4 (city subdivision) level
|
ENHANCED_POINT
Enhanced point level address
|
POINT
Data is address point level
|
POST_CODE_1
Data has postal code centroids
|
POST_CODE_2
Data has centroids for postal code extensions
|
STREET
Data has street segment shapes
|
| Modifier and Type | Method and Description |
|---|---|
static DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataType ENHANCED_POINT
public static final DataType POINT
public static final DataType STREET
public static final DataType POST_CODE_1
public static final DataType POST_CODE_2
public static final DataType AREA_NAME_1
public static final DataType AREA_NAME_2
public static final DataType AREA_NAME_3
public static final DataType AREA_NAME_4
public static DataType[] values()
for (DataType c : DataType.values()) System.out.println(c);
public static DataType 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 © 2024. All rights reserved.