Class LocatorAttribute
- java.lang.Object
-
- com.esri.arcgisruntime.tasks.geocode.LocatorAttribute
-
public final class LocatorAttribute extends Object
Represents an attribute that can be used as input to multi-line geocode operations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LocatorAttribute.Type
Signifies the type of a LocatorAttribute.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDisplayName()
Gets the display name of this attribute.String
getName()
Gets the name of this attribute.LocatorAttribute.Type
getType()
Gets the type of this attribute.boolean
isRequired()
Gets whether or not this locator attribute is required.
-
-
-
Method Detail
-
getName
public String getName()
Gets the name of this attribute.- Returns:
- the name
- Since:
- 100.0.0
-
getDisplayName
public String getDisplayName()
Gets the display name of this attribute.- Returns:
- the display name
- Since:
- 100.0.0
-
getType
public LocatorAttribute.Type getType()
Gets the type of this attribute.- Returns:
- the attribute type
- Since:
- 100.0.0
-
isRequired
public boolean isRequired()
Gets whether or not this locator attribute is required.- Returns:
- true if the attribute is required, false otherwise
- Since:
- 100.3.0
-
-