Package oracle.spatial.network.nfe.beans
Class NFEShortestPath
- java.lang.Object
-
- oracle.spatial.network.nfe.beans.NFEShortestPath
-
public class NFEShortestPath extends java.lang.ObjectProvides 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 AnalysisCostgetAnalysisCost()Returns the analysis cost.NFEFeaturegetNFEEndFeature()Returns the end feature.NFEFeaturegetNFEStartFeature()Returns the start feature.java.lang.BooleangetReverseDirection()Returns true to use reverse search direction, false otherwise.voidsetAnalysisCost(AnalysisCost analysisCost)Sets the analysis cost.voidsetNFEEndFeature(NFEFeature nfeEndFeature)Sets the end feature.voidsetNFEStartFeature(NFEFeature nfeStartFeature)Sets the start feature.voidsetReverseDirection(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.
-
-