Package oracle.spatial.network.nfe.beans
Class NFEShortestPath
- java.lang.Object
-
- oracle.spatial.network.nfe.beans.NFEShortestPath
-
public class NFEShortestPath extends java.lang.Object
Provides the data to run a shortest path analysis.
-
-
Constructor Summary
Constructors Constructor Description NFEShortestPath()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnalysisCost
getAnalysisCost()
Returns the analysis cost.NFEFeature
getNFEEndFeature()
Returns the end feature.NFEFeature
getNFEStartFeature()
Returns the start feature.java.lang.Boolean
getReverseDirection()
Returns true to use reverse search direction, false otherwise.void
setAnalysisCost(AnalysisCost analysisCost)
Sets the analysis cost.void
setNFEEndFeature(NFEFeature nfeEndFeature)
Sets the end feature.void
setNFEStartFeature(NFEFeature nfeStartFeature)
Sets the start feature.void
setReverseDirection(java.lang.Boolean reverseDirection)
Sets true to use reverse search direction, false otherwise.
-
-
-
Method Detail
-
getAnalysisCost
public AnalysisCost getAnalysisCost()
Returns the analysis cost.- Returns:
- analysis cost
-
setAnalysisCost
public void setAnalysisCost(AnalysisCost analysisCost)
Sets the analysis cost.- Parameters:
analysisCost
- analysis cost
-
getNFEStartFeature
public NFEFeature getNFEStartFeature()
Returns the start feature.- Returns:
- start feature
-
setNFEStartFeature
public void setNFEStartFeature(NFEFeature nfeStartFeature)
Sets the start feature.- Parameters:
nfeStartFeature
- start feature
-
getNFEEndFeature
public NFEFeature getNFEEndFeature()
Returns the end feature.- Returns:
- end feature
-
setNFEEndFeature
public void setNFEEndFeature(NFEFeature nfeEndFeature)
Sets the end feature.- Parameters:
nfeEndFeature
- end feature
-
getReverseDirection
public java.lang.Boolean getReverseDirection()
Returns true to use reverse search direction, false otherwise.- Returns:
- true to use reverse search direction, false otherwise.
-
setReverseDirection
public void setReverseDirection(java.lang.Boolean reverseDirection)
Sets true to use reverse search direction, false otherwise.- Parameters:
reverseDirection
- true to use reverse search direction, false otherwise.
-
-