Class ExportInfo

java.lang.Object
com.dropbox.core.v2.files.ExportInfo

public class ExportInfo extends Object
Export information for a file.
  • Field Details

    • exportAs

      @Nullable protected final String exportAs
    • exportOptions

      @Nullable protected final List<String> exportOptions
  • Constructor Details

    • ExportInfo

      public ExportInfo(@Nullable String exportAs, @Nullable List<String> exportOptions)
      Export information for a file.

      Use newBuilder() to create instances of this class without specifying values for all optional fields.

      Parameters:
      exportAs - Format to which the file can be exported to.
      exportOptions - Additional formats to which the file can be exported. These values can be specified as the export_format in /files/export. Must not contain a null item.
      Throws:
      IllegalArgumentException - If any argument does not meet its preconditions.
    • ExportInfo

      public ExportInfo()
      Export information for a file.

      The default values for unset fields will be used.

  • Method Details

    • getExportAs

      @Nullable public String getExportAs()
      Format to which the file can be exported to.
      Returns:
      value for this field, or null if not present.
    • getExportOptions

      @Nullable public List<String> getExportOptions()
      Additional formats to which the file can be exported. These values can be specified as the export_format in /files/export.
      Returns:
      value for this field, or null if not present.
    • newBuilder

      public static ExportInfo.Builder newBuilder()
      Returns a new builder for creating an instance of this class.
      Returns:
      builder for this class.
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • toStringMultiline

      public String toStringMultiline()
      Returns a String representation of this object formatted for easier readability.

      The returned String may contain newlines.

      Returns:
      Formatted, multiline String representation of this object