|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabase.StreetNameFields
public class StreetNameFields
A container for describing street name fields used to generate driving directions.
StreetNameFields allows fine grained specification of network directions and the ability to associate multiple alternate names for a street in a network dataset. The StreetNameFields object should be added to an IArray object which is then supplied to the INetworkSourceDirections::StreetNameFields method.
Constructor Summary | |
---|---|
StreetNameFields()
Constructs a StreetNameFields using ArcGIS Engine. |
|
StreetNameFields(Object obj)
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts. StreetNameFields theStreetNameFields = (StreetNameFields) obj; |
Method Summary | |
---|---|
boolean |
equals(Object o)
Compare this object with another |
static String |
getClsid()
getClsid. |
String |
getFullNameFieldName()
The field name used to store the full street name. |
String |
getHighwayDirectionFieldName()
The field name used for highway direction. |
String |
getLanguageFieldName()
The field name used for the language of the street. |
String |
getPrefixDirectionFieldName()
The field name used for prefix direction. |
String |
getPrefixTypeFieldName()
The field name used for prefix type. |
int |
getPriority()
The priority for when these street name fields are used. |
String |
getStreetNameFieldName()
The field name used for street name. |
String |
getSuffixDirectionFieldName()
The field name used for suffix direction. |
String |
getSuffixTypeFieldName()
The field name used for suffix type. |
int |
hashCode()
the hashcode for this object |
void |
setFullNameFieldName(String name)
The field name used to store the full street name. |
void |
setHighwayDirectionFieldName(String name)
The field name used for highway direction. |
void |
setLanguageFieldName(String name)
The field name used for the language of the street. |
void |
setPrefixDirectionFieldName(String name)
The field name used for prefix direction. |
void |
setPrefixTypeFieldName(String name)
The field name used for prefix type. |
void |
setPriority(int priority)
The priority for when these street name fields are used. |
void |
setStreetNameFieldName(String name)
The field name used for street name. |
void |
setSuffixDirectionFieldName(String name)
The field name used for suffix direction. |
void |
setSuffixTypeFieldName(String name)
The field name used for suffix type. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef |
---|
getJintegraDispatch, release |
Constructor Detail |
---|
public StreetNameFields() throws IOException, UnknownHostException
IOException
- if there are interop problems
UnknownHostException
- if there are interop problemspublic StreetNameFields(Object obj) throws IOException
StreetNameFields theStreetNameFields = (StreetNameFields) obj;
obj
to StreetNameFields
.
obj
- an object returned from ArcGIS Engine or Server
IOException
- if there are interop problemsMethod Detail |
---|
public static String getClsid()
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String getPrefixDirectionFieldName() throws IOException, AutomationException
The field name containing the direcitonal prefix information. Typical values in these types of fields are: N, S, SE, etc.
getPrefixDirectionFieldName
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setPrefixDirectionFieldName(String name) throws IOException, AutomationException
setPrefixDirectionFieldName
in interface IStreetNameFields
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getPrefixTypeFieldName() throws IOException, AutomationException
The field name containing the prefix type information. Typical values in these types of fields are: Calle, STHY, etc.
getPrefixTypeFieldName
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setPrefixTypeFieldName(String name) throws IOException, AutomationException
setPrefixTypeFieldName
in interface IStreetNameFields
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getStreetNameFieldName() throws IOException, AutomationException
The primary name for referring to a street in the directions. In order to associate other names with a particular street, create another IStreetNameFields object, associate the alterate name field with the StreetNameFieldName and set the priority to a value higher than the preceeding IStreetNameFields object.
getStreetNameFieldName
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setStreetNameFieldName(String name) throws IOException, AutomationException
setStreetNameFieldName
in interface IStreetNameFields
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getSuffixTypeFieldName() throws IOException, AutomationException
getSuffixTypeFieldName
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setSuffixTypeFieldName(String name) throws IOException, AutomationException
The field name containing the suffix type information. Typical values in these types of fields are: Str, Drive, Way, etc.
setSuffixTypeFieldName
in interface IStreetNameFields
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getSuffixDirectionFieldName() throws IOException, AutomationException
The field name containing the direcitonal suffix information. Typical values in these types of fields are: N, S, SE, etc.
getSuffixDirectionFieldName
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setSuffixDirectionFieldName(String name) throws IOException, AutomationException
setSuffixDirectionFieldName
in interface IStreetNameFields
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getPriority() throws IOException, AutomationException
The priority of the StreetNameFields collection. In order to designate a collection of fields as the primary StreetNameFields, set the Priority property to be 1. Other alternate collections of StreetNameFields may be specified.
getPriority
in interface IStreetNameFields
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setPriority(int priority) throws IOException, AutomationException
setPriority
in interface IStreetNameFields
priority
- The priority (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getHighwayDirectionFieldName() throws IOException, AutomationException
getHighwayDirectionFieldName
in interface IStreetNameFields2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setHighwayDirectionFieldName(String name) throws IOException, AutomationException
setHighwayDirectionFieldName
in interface IStreetNameFields2
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getLanguageFieldName() throws IOException, AutomationException
getLanguageFieldName
in interface IStreetNameFields2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setLanguageFieldName(String name) throws IOException, AutomationException
setLanguageFieldName
in interface IStreetNameFields2
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getFullNameFieldName() throws IOException, AutomationException
getFullNameFieldName
in interface IStreetNameFields2
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setFullNameFieldName(String name) throws IOException, AutomationException
setFullNameFieldName
in interface IStreetNameFields2
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |