Enum GenerateOfflineMapParameters.ReturnLayerAttachmentOption

    • 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 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 name
        java.lang.NullPointerException - if the argument is null