|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.esri.aims.mtier.model.map.layer.geocode.Result
Defines an individual Result object associated with an AddressMatchResults object. The Result object is created after a geocode process, and contains the score, value, and PointObject containing the resulting coordinates.
Constructor Summary | |
Result()
Constructs an instance of a Result object. |
Method Summary | |
Point |
getPointObject()
Returns the PointObject associated with this Result object. |
long |
getScore()
Returns the geocode result score, or the level of accuracy associated with this Result object. |
String |
getValue()
Returns the value associated with this Result object. |
void |
setScore(long value)
Sets the geocode result score for this Result object. |
void |
setValue(String value)
Sets the Result objects value from the GEOCODE response. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Result()
Result object is created by responses from the ArcIMS Application Server.
Method Detail |
public void setValue(String value)
value
- the geocode value.getValue()
public String getValue()
String value = result.getValue();
setValue(java.lang.String)
public void setScore(long value)
value
- the geocode result score.getScore()
public long getScore()
long score = addressMatchResults.getScore();
setScore(long)
public Point getPointObject()
Point pnt = result.getPointObject();
#setPointObject
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |