Class PopupMediaValue
- java.lang.Object
-
- com.esri.arcgisruntime.mapping.popup.PopupMediaValue
-
public final class PopupMediaValue extends java.lang.Object
Represents the media info values correlating to the type of media.- Since:
- 100.0.0
-
-
Constructor Summary
Constructors Constructor Description PopupMediaValue()
Constructs an empty PopupMediaValue.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>
getFieldNames()
Gets the field names to display in the chart.java.lang.String
getLinkUrl()
Gets the link URL for an image media.java.lang.String
getNormalizeFieldName()
Gets the optional field name used to normalize the chart.java.lang.String
getSourceUrl()
Gets the source URL for an image media.java.lang.String
getTooltipFieldName()
Gets the tooltip field name.void
setLinkUrl(java.lang.String linkUrl)
Sets the link URL for an image media.void
setNormalizeFieldName(java.lang.String normalizeFieldName)
Sets the optional field name used to normalize the chart.void
setSourceUrl(java.lang.String sourceUrl)
Sets the source URL for an image media.void
setTooltipFieldName(java.lang.String tooltipFieldName)
Sets the tooltip field name.
-
-
-
Method Detail
-
getSourceUrl
public java.lang.String getSourceUrl()
Gets the source URL for an image media.- Returns:
- the source URL for an image media
- Since:
- 100.0.0
-
setSourceUrl
public void setSourceUrl(java.lang.String sourceUrl)
Sets the source URL for an image media.- Parameters:
sourceUrl
- the source URL for an image media- Since:
- 100.0.0
-
getLinkUrl
public java.lang.String getLinkUrl()
Gets the link URL for an image media.- Returns:
- the link URL for an image media
- Since:
- 100.0.0
-
setLinkUrl
public void setLinkUrl(java.lang.String linkUrl)
Sets the link URL for an image media.- Parameters:
linkUrl
- the link URL for an image media- Since:
- 100.0.0
-
getNormalizeFieldName
public java.lang.String getNormalizeFieldName()
Gets the optional field name used to normalize the chart.- Returns:
- the optional field name used to normalize the chart
- Since:
- 100.0.0
-
setNormalizeFieldName
public void setNormalizeFieldName(java.lang.String normalizeFieldName)
Sets the optional field name used to normalize the chart.- Parameters:
normalizeFieldName
- the optional field name used to normalize the chart- Since:
- 100.0.0
-
getTooltipFieldName
public java.lang.String getTooltipFieldName()
Gets the tooltip field name.- Returns:
- the tooltip field name
- Since:
- 100.0.0
-
setTooltipFieldName
public void setTooltipFieldName(java.lang.String tooltipFieldName)
Sets the tooltip field name.- Parameters:
tooltipFieldName
- the tooltip field name- Since:
- 100.0.0
-
getFieldNames
public java.util.List<java.lang.String> getFieldNames()
Gets the field names to display in the chart.- Returns:
- the field names to display in the chart
- Since:
- 100.0.0
-
-