Class PopupRelatedFeaturesDefinition
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.popup.PopupRelatedFeaturesDefinition
-
public final class PopupRelatedFeaturesDefinition extends java.lang.Object
Contains information about displaying related features in a popup.- Since:
- 100.1.0
-
-
Constructor Summary
Constructors Constructor Description PopupRelatedFeaturesDefinition()
Creates an instance of PopupRelatedFeaturesDefinition.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<PopupRelatedFeaturesSortOrder>
getSortOrder()
Gets a modifiable list ofPopupRelatedFeaturesSortOrder
objects which dictate the order that relationships and related features in each relationship should be displayed in a popup.boolean
isShowRelatedFeatures()
Gets if the popup should show features that are related to this popup's feature.void
setShowRelatedFeatures(boolean showRelatedFeatures)
Sets if the popup should show features that are related to this popup's feature.
-
-
-
Method Detail
-
isShowRelatedFeatures
public boolean isShowRelatedFeatures()
Gets if the popup should show features that are related to this popup's feature.- Returns:
- true if the popup should should related features, false otherwise
- Since:
- 100.1.0
-
setShowRelatedFeatures
public void setShowRelatedFeatures(boolean showRelatedFeatures)
Sets if the popup should show features that are related to this popup's feature.- Parameters:
showRelatedFeatures
- true if the popup should show related features, false otherwise- Since:
- 100.1.0
-
getSortOrder
public java.util.List<PopupRelatedFeaturesSortOrder> getSortOrder()
Gets a modifiable list ofPopupRelatedFeaturesSortOrder
objects which dictate the order that relationships and related features in each relationship should be displayed in a popup.- Returns:
- a modifiable list of PopupRelatedFeaturesSortOrder objects
- Since:
- 100.1.0
-
-