Enum PopupMedia.Type
- java.lang.Object
-
- java.lang.Enum<PopupMedia.Type>
-
- com.esri.arcgisruntime.mapping.popup.PopupMedia.Type
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PopupMedia.Type>
- Enclosing class:
- PopupMedia
public static enum PopupMedia.Type extends java.lang.Enum<PopupMedia.Type>
Type of media in a pop-up. Controls the type of media inside a pop-up.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BAR_CHART
Bar chart.COLUMN_CHART
Column chart.IMAGE
Image.LINE_CHART
Line chart.PIE_CHART
Pie chart.UNKNOWN
Unknown media type.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PopupMedia.Type
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PopupMedia.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMAGE
public static final PopupMedia.Type IMAGE
Image.
-
BAR_CHART
public static final PopupMedia.Type BAR_CHART
Bar chart.
-
COLUMN_CHART
public static final PopupMedia.Type COLUMN_CHART
Column chart.
-
LINE_CHART
public static final PopupMedia.Type LINE_CHART
Line chart.
-
PIE_CHART
public static final PopupMedia.Type PIE_CHART
Pie chart.
-
UNKNOWN
public static final PopupMedia.Type UNKNOWN
Unknown media type.
-
-
Method Detail
-
values
public static PopupMedia.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PopupMedia.Type c : PopupMedia.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PopupMedia.Type valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-