Module com.esri.arcgisruntime
Enum Class PopupAttachmentsDisplayType
java.lang.Object
java.lang.Enum<PopupAttachmentsDisplayType>
com.esri.arcgisruntime.mapping.popup.PopupAttachmentsDisplayType
- All Implemented Interfaces:
Serializable
,Comparable<PopupAttachmentsDisplayType>
,Constable
The type indicating how to display the attachments.
If
LIST
is specified, attachments show as links.
If PREVIEW
is specified, attachments expand to the width of the pop-up.
Setting the value to AUTO
allows applications to choose
the most suitable default experience for their application.- Since:
- 100.14.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic PopupAttachmentsDisplayType
Returns the enum constant of this class with the specified name.static PopupAttachmentsDisplayType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LIST
Show attachments as links.- Since:
- 100.14.0
-
PREVIEW
Attachments expand to the width of the pop-up.- Since:
- 100.14.0
-
AUTO
Allows applications to choose the most suitable default experience for their application.- Since:
- 100.14.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-