Class Analysis
- java.lang.Object
-
- com.esri.arcgisruntime.geoanalysis.Analysis
-
- Direct Known Subclasses:
LineOfSight
,LocationDistanceMeasurement
,Viewshed
public abstract class Analysis extends java.lang.Object
Represents base class for all analyses that can be performed on aSceneView
.- Since:
- 100.2.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isVisible()
Gets whether the analysis is visible.void
setVisible(boolean visible)
Sets whether the analysis should be visible.
-
-
-
Method Detail
-
isVisible
public boolean isVisible()
Gets whether the analysis is visible.- Returns:
- true if the analysis is visible, otherwise false
- Since:
- 100.2.0
-
setVisible
public void setVisible(boolean visible)
Sets whether the analysis should be visible.- Parameters:
visible
- true if the analysis should be visible, otherwise false- Since:
- 100.2.0
-
-