com.supermap.services.providers
Class TurnDatasetInfo
- java.lang.Object
-
- com.supermap.services.providers.UGCDatasetConnectionInfo
-
- com.supermap.services.providers.TurnDatasetInfo
-
- All Implemented Interfaces:
- java.io.Serializable
public class TurnDatasetInfo extends UGCDatasetConnectionInfo
Steering table data set information.
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field and Description java.lang.StringfromEdgeIDFieldIndicates the field name to the start arc ID.java.lang.StringnodeIDFieldThe field name that represents the destination node ID.java.lang.StringtoEdgeIDFieldThe name of the field that represents the end of the arc ID.java.lang.String[]weightFieldsIndicates an array of field names.-
Fields inherited from class com.supermap.services.providers.UGCDatasetConnectionInfo
datasetName, datasourceName, workspaceConnectString, workspaceType
-
-
Constructor Summary
Constructors Constructor and Description TurnDatasetInfo()The Constructor.TurnDatasetInfo(TurnDatasetInfo turnDatasetInfo)Copy constructor.
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(java.lang.Object obj)Compare whether the specified object is equal to the currentTurnDatasetInfoobject.inthashCode()Gets the hash code value of the divert table dataset information object.
-
-
-
Field Detail
-
nodeIDField
public java.lang.String nodeIDField
The field name that represents the destination node ID. The default is "NodeID".
-
fromEdgeIDField
public java.lang.String fromEdgeIDField
Indicates the field name to the start arc ID. The default is "FEdgeID".
-
toEdgeIDField
public java.lang.String toEdgeIDField
The name of the field that represents the end of the arc ID. The default is "TEdgeID".
-
weightFields
public java.lang.String[] weightFields
Indicates an array of field names.
-
-
Constructor Detail
-
TurnDatasetInfo
public TurnDatasetInfo()
The Constructor.
-
TurnDatasetInfo
public TurnDatasetInfo(TurnDatasetInfo turnDatasetInfo)
Copy constructor.
- Parameters:
turnDatasetInfo- turns to the table dataset information object.
-
-
Method Detail
-
hashCode
public int hashCode()
Gets the hash code value of the divert table dataset information object.
- Overrides:
hashCodein classUGCDatasetConnectionInfo- Returns:
- hash code value.
-
equals
public boolean equals(java.lang.Object obj)
Compare whether the specified object is equal to the current
TurnDatasetInfoobject.- Overrides:
equalsin classUGCDatasetConnectionInfo- Parameters:
obj- The object that is compared with the currentTurnDatasetInfoobject.- Returns:
- returns true if the specified object is equal to the divert table dataset information object, otherwise false.
-
-