public enum ResolutionQuality extends java.lang.Enum<ResolutionQuality>
Enum Constant and Description |
---|
Constant
Pulled from a static list of geocodes for specific jurisdictions
|
CountryCentroid
Avalara-defined country centroid
|
External
Location was already geocoded on the request
|
Interpolated
Interpolated to rooftop
|
Intersection
Nearest intersection
|
NotCoded
Location was not geocoded
|
PartialCentroid
Geocoded at a level more coarse than a PostalCentroid1
|
PostalCentroidBest
Best postal code (zip9 in US, complete postal code elsewhere)
|
PostalCentroidBetter
Better postal code (zip7 in US)
|
PostalCentroidGood
Largest postal code (zip5 in US, left three in CA, etc
|
RegionCentroid
Avalara-defined state / province centroid
|
Rooftop
Assumed to be rooftop level, non-interpolated
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ResolutionQuality |
valueOf(int intValue) |
static ResolutionQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResolutionQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResolutionQuality NotCoded
public static final ResolutionQuality External
public static final ResolutionQuality CountryCentroid
public static final ResolutionQuality RegionCentroid
public static final ResolutionQuality PartialCentroid
public static final ResolutionQuality PostalCentroidGood
public static final ResolutionQuality PostalCentroidBetter
public static final ResolutionQuality PostalCentroidBest
public static final ResolutionQuality Intersection
public static final ResolutionQuality Interpolated
public static final ResolutionQuality Rooftop
public static final ResolutionQuality Constant
public static ResolutionQuality[] values()
for (ResolutionQuality c : ResolutionQuality.values()) System.out.println(c);
public static ResolutionQuality valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ResolutionQuality valueOf(int intValue)
public int getValue()