Enum GenerateOfflineMapParameters.ReturnLayerAttachmentOption
- java.lang.Object
-
- java.lang.Enum<GenerateOfflineMapParameters.ReturnLayerAttachmentOption>
-
- com.esri.arcgisruntime.tasks.offlinemap.GenerateOfflineMapParameters.ReturnLayerAttachmentOption
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GenerateOfflineMapParameters.ReturnLayerAttachmentOption>
- Enclosing class:
- GenerateOfflineMapParameters
public static enum GenerateOfflineMapParameters.ReturnLayerAttachmentOption extends java.lang.Enum<GenerateOfflineMapParameters.ReturnLayerAttachmentOption>
Indicates the type of layers for which attachments will be included when taking feature layers offline.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_LAYERS
Include attachments with all feature layers when taking offline.EDITABLE_LAYERS
Include attachments only with editable feature layers when taking offline.NONE
Don't include attachments when taking feature layers offline.READ_ONLY_LAYERS
Include attachments only with read-only feature layers when taking offline.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GenerateOfflineMapParameters.ReturnLayerAttachmentOption
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GenerateOfflineMapParameters.ReturnLayerAttachmentOption[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_LAYERS
public static final GenerateOfflineMapParameters.ReturnLayerAttachmentOption ALL_LAYERS
Include attachments with all feature layers when taking offline.- Since:
- 100.1.0
-
READ_ONLY_LAYERS
public static final GenerateOfflineMapParameters.ReturnLayerAttachmentOption READ_ONLY_LAYERS
Include attachments only with read-only feature layers when taking offline.- Since:
- 100.1.0
-
EDITABLE_LAYERS
public static final GenerateOfflineMapParameters.ReturnLayerAttachmentOption EDITABLE_LAYERS
Include attachments only with editable feature layers when taking offline.- Since:
- 100.1.0
-
NONE
public static final GenerateOfflineMapParameters.ReturnLayerAttachmentOption NONE
Don't include attachments when taking feature layers offline.- Since:
- 100.1.0
-
-
Method Detail
-
values
public static GenerateOfflineMapParameters.ReturnLayerAttachmentOption[] 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 (GenerateOfflineMapParameters.ReturnLayerAttachmentOption c : GenerateOfflineMapParameters.ReturnLayerAttachmentOption.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GenerateOfflineMapParameters.ReturnLayerAttachmentOption 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
-
-