|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabase.EdgeFeatureSource
public class EdgeFeatureSource
A container for describing a network dataset source whose edge elements are derived from line feature geometry.
An edge feature source is a feature class with polyline geometry that is used to generate edge elements into a network dataset. An EdgeFeatureSource object is a light weight object that holds the information about an edge feature source in a network dataset.
The EdgeFeatureSource object for an existing network dataset can be accessed through the INetworkDataset interface.
Constructor Summary | |
---|---|
EdgeFeatureSource()
Constructs a EdgeFeatureSource using ArcGIS Engine. |
|
EdgeFeatureSource(Object obj)
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts. EdgeFeatureSource theEdgeFeatureSource = (EdgeFeatureSource) obj; |
Method Summary | |
---|---|
boolean |
equals(Object o)
Compare this object with another |
int |
getClassConnectivityGroup()
Connectivity group in which this edge feature source participates. |
int |
getClassConnectivityPolicy()
Policy determining how all edge elements in this source connect to each other. |
static String |
getClsid()
getClsid. |
int |
getElementType()
Network element type of this network source. |
String |
getFromElevationFieldName()
The field name on the feature source to be used as the from elevation field when determining connectivity at coincident end vertices. |
int |
getID()
Unique identifier of this network source. |
String |
getName()
Name of the class associated with this network source. |
INetworkSourceDirections |
getNetworkSourceDirections()
The driving directions settings for this network source. |
IPropertySet |
getProperties()
Property set of this network source. |
int |
getSourceType()
Type of network source. |
int |
getSubtypeConnectivityGroup(int subtypeCode)
Connectivity group in which the specified subtype of this edge feature source participates. |
int |
getSubtypeConnectivityPolicy(int subtypeCode)
Policy determining how the edge elements in the specified subtype of this source connect to each other. |
String |
getToElevationFieldName()
The field name on the feature source to be used as the to elevation field when determining connectivity at coincident end vertices. |
int |
hashCode()
the hashcode for this object |
boolean |
isUsesGeometryInConnectivity()
Indicates if the source object's geometry is used in determining network connectivity. |
boolean |
isUsesSubtypes()
Indicates if this edge feature source determines connectivity groups and policies by subtypes. |
void |
setClassConnectivityGroup(int group)
Connectivity group in which this edge feature source participates. |
void |
setClassConnectivityPolicy(int policy)
Policy determining how all edge elements in this source connect to each other. |
void |
setElementType(int elementType)
Network element type of this network source. |
void |
setFromElevationFieldName(String name)
The field name on the feature source to be used as the from elevation field when determining connectivity at coincident end vertices. |
void |
setName(String sourceName)
Name of the class associated with this network source. |
void |
setNetworkSourceDirectionsByRef(INetworkSourceDirections sourceDirections)
The driving directions settings for this network source. |
void |
setProperties(IPropertySet sourceProperties)
Property set of this network source. |
void |
setSubtypeConnectivityGroup(int subtypeCode,
int group)
Connectivity group in which the specified subtype of this edge feature source participates. |
void |
setSubtypeConnectivityPolicy(int subtypeCode,
int policy)
Policy determining how the edge elements in the specified subtype of this source connect to each other. |
void |
setToElevationFieldName(String name)
The field name on the feature source to be used as the to elevation field when determining connectivity at coincident end vertices. |
void |
setUsesSubtypes(boolean bySubtype)
Indicates if this edge feature source determines connectivity groups and policies by subtypes. |
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 EdgeFeatureSource() throws IOException, UnknownHostException
IOException
- if there are interop problems
UnknownHostException
- if there are interop problemspublic EdgeFeatureSource(Object obj) throws IOException
EdgeFeatureSource theEdgeFeatureSource = (EdgeFeatureSource) obj;
obj
to EdgeFeatureSource
.
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 int getID() throws IOException, AutomationException
Each source in a Network Dataset is identified by a unique value, the ID property. The ID property can be used to get a reference to the corresponding network source through the INetworkDataset::SourceByID property. This ID is different than the ID value returned by the IObjectClass::ObjectClassID property.
As with ObjectID values, SourceID values are never reused. They are not guaranteed to be sequential, but are guaranteed to be in increasing order based on when the source was added to the network. Unless the source is added or deleted from the DataElement, the SourceID values will remain constant after the INetworkDataset::UpdateSchema method is called.
getID
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getElementType() throws IOException, AutomationException
getElementType
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setElementType(int elementType) throws IOException, AutomationException
setElementType
in interface INetworkSource
elementType
- A com.esri.arcgis.geodatabase.esriNetworkElementType constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getName() throws IOException, AutomationException
The Name property for the NetworkSource is exactly the same as the name of the reference FeatureClass. The feature classes that participate in the network dataset can be opened from the NetworkDataset by simply calling IFeatureClassContainer::ClassByName and passing in this Name.
NOTE: For SDC network datasets, not all network sources have a reference feature class. Only those feature classes returned in the IFeatureClassContainer::Classes enumeration can be opened.
Unlike other network dataset types, the source names for an SDC network dataset are not the same as the feature class names of the SDC feature classes. For SDC data, the source name for the edge feature source is the same as the network dataset name (obtained from IDataset::Name).
getName
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setName(String sourceName) throws IOException, AutomationException
setName
in interface INetworkSource
sourceName
- The sourceName (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public IPropertySet getProperties() throws IOException, AutomationException
getProperties
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setProperties(IPropertySet sourceProperties) throws IOException, AutomationException
setProperties
in interface INetworkSource
sourceProperties
- A reference to a com.esri.arcgis.system.IPropertySet (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isUsesGeometryInConnectivity() throws IOException, AutomationException
The UsesGeometryInConnectivity property indicates whether the geometries of the features in a NetworkSource are used in determining how its network elements are connected to each other.
For example, the geometries of the features in an EdgeFeatureSource and JunctionFeatureSource are used to determine how the generated edge and junction elements connect to each other. The UsesGeometryInConnectivity property for these sources is True.
In contrast, the geometries of the features in a TurnFeatureSource are not used in deteriming how the turn elements are associated with the edges and junctions of the network -- the fields of the TurnFeatureSource feature class determine this. The UsesGeometryInConnectivity property for the TurnFeatureSource is False.
isUsesGeometryInConnectivity
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getSourceType() throws IOException, AutomationException
getSourceType
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public INetworkSourceDirections getNetworkSourceDirections() throws IOException, AutomationException
The NetworkSourceDirections property specifies the information needed to generate driving directions when reporting routes traversing elements from this NetworkSource.
getNetworkSourceDirections
in interface INetworkSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setNetworkSourceDirectionsByRef(INetworkSourceDirections sourceDirections) throws IOException, AutomationException
setNetworkSourceDirectionsByRef
in interface INetworkSource
sourceDirections
- A reference to a com.esri.arcgis.geodatabase.INetworkSourceDirections (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getClassConnectivityPolicy() throws IOException, AutomationException
An EdgeFeatureSource can be assigned to a connectivity group in the network dataset in one of two ways:
If all features are assigned to the same connectivity group, then use the ClassConnectivityPolicy property to specify the appropriate edge connectivity policy for the features in this EdgeFeatureSource.
If features are assigned to a connectivity group based on their Subtype values, then the ClassConnectivityPolicy property is not used. See the SubtypeConnectivityPolicy property.
getClassConnectivityPolicy
in interface IEdgeFeatureSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setClassConnectivityPolicy(int policy) throws IOException, AutomationException
setClassConnectivityPolicy
in interface IEdgeFeatureSource
policy
- A com.esri.arcgis.geodatabase.esriNetworkEdgeConnectivityPolicy constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getClassConnectivityGroup() throws IOException, AutomationException
An EdgeFeatureSource can be assigned to a connectivity group in the network dataset in one of two ways:
If all features are assigned to the same connectivity group, then use the ClassConnectivityGroup property to specify the connectivity group that this EdgeFeatureSource is assigned.
If features are assigned to a connectivity group based on their Subtype values, then the ClassConnectivityGroup property is not used. See the SubtypeConnectivityGroup property.
getClassConnectivityGroup
in interface IEdgeFeatureSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setClassConnectivityGroup(int group) throws IOException, AutomationException
setClassConnectivityGroup
in interface IEdgeFeatureSource
group
- The group (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getSubtypeConnectivityPolicy(int subtypeCode) throws IOException, AutomationException
getSubtypeConnectivityPolicy
in interface IEdgeFeatureSource
subtypeCode
- The subtypeCode (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setSubtypeConnectivityPolicy(int subtypeCode, int policy) throws IOException, AutomationException
setSubtypeConnectivityPolicy
in interface IEdgeFeatureSource
subtypeCode
- The subtypeCode (in)policy
- A com.esri.arcgis.geodatabase.esriNetworkEdgeConnectivityPolicy constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public int getSubtypeConnectivityGroup(int subtypeCode) throws IOException, AutomationException
getSubtypeConnectivityGroup
in interface IEdgeFeatureSource
subtypeCode
- The subtypeCode (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setSubtypeConnectivityGroup(int subtypeCode, int group) throws IOException, AutomationException
setSubtypeConnectivityGroup
in interface IEdgeFeatureSource
subtypeCode
- The subtypeCode (in)group
- The group (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public boolean isUsesSubtypes() throws IOException, AutomationException
An EdgeFeatureSource can be assigned to a connectivity group in the network dataset in one of two ways:
If all features are assigned to the same connectivity group, then the UsesSubtypes property should be set to False. This means that the ClassConnectivityGroup and ClassConnectivityPolicysettings will apply to this EdgeFeatureSource.
If features are assigned to a connectivity group based on their Subtype values, then the UsesSubtypes property should be set to True. This means that the SubtypeConnectivityGroup and SubtypeConnectivityPolicysettings will apply to this EdgeFeatureSource.
isUsesSubtypes
in interface IEdgeFeatureSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setUsesSubtypes(boolean bySubtype) throws IOException, AutomationException
setUsesSubtypes
in interface IEdgeFeatureSource
bySubtype
- The bySubtype (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getFromElevationFieldName() throws IOException, AutomationException
When using elevation field data, both the FromElevationFieldName and ToElevationFieldName must be specified.
getFromElevationFieldName
in interface IEdgeFeatureSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setFromElevationFieldName(String name) throws IOException, AutomationException
setFromElevationFieldName
in interface IEdgeFeatureSource
name
- The name (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public String getToElevationFieldName() throws IOException, AutomationException
When using elevation field data, both the FromElevationFieldName and ToElevationFieldName must be specified.
getToElevationFieldName
in interface IEdgeFeatureSource
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public void setToElevationFieldName(String name) throws IOException, AutomationException
setToElevationFieldName
in interface IEdgeFeatureSource
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 |