com.cloudconvert.dto.Operation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudconvert-java Show documentation
Show all versions of cloudconvert-java Show documentation
CloudConvert is an online file converter API - more than 200 different audio, video, document, ebook, archive, image, spreadsheet and presentation formats supported.
package com.cloudconvert.dto;
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.Getter;
public enum Operation {
CONVERT("convert"),
OPTIMIZE("optimize"),
CAPTURE_WEBSITE("capture-website"),
MERGE("merge"),
ARCHIVE("archive"),
ARCHIVE_EXTRACT("archive/extract"),
COMMAND("command"),
THUMBNAIL("thumbnail"),
METADATA("metadata"),
IMPORT_URL("import/url"),
IMPORT_UPLOAD("import/upload"),
IMPORT_S3("import/s3"),
IMPORT_AZURE_BLOB("import/azure-blob"),
IMPORT_GOOGLE_CLOUD_STORAGE("import/google-cloud-storage"),
IMPORT_OPENSTACK("import/openstack"),
IMPORT_SFTP("import/sftp"),
EXPORT_URL("export/url"),
EXPORT_S3("export/s3"),
EXPORT_AZURE_BLOB("export/azure-blob"),
EXPORT_GOOGLE_CLOUD_STORAGE("export/google-cloud-storage"),
EXPORT_OPENSTACK("export/openstack"),
EXPORT_SFTP("export/sftp");
@Getter
@JsonValue
private final String label;
Operation(final String label) {
this.label = label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy