All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.com.ionic.sdk.agent.cipher.file.data.CipherFamily Maven / Gradle / Ivy

Go to download

The Ionic Java SDK provides an easy-to-use interface to the Ionic Platform.

There is a newer version: 2.9.0
Show newest version
package com.ionic.sdk.agent.cipher.file.data;

/**
 * Enumeration of all supported Ionic file cipher families.
 */
public enum CipherFamily {

    /**
     * Represents an unknown / invalid cipher family.
     */
    FAMILY_UNKNOWN,

    /**
     * Represents the Generic cipher family implemented by {@link com.ionic.sdk.agent.cipher.file.GenericFileCipher}.
     */
    FAMILY_GENERIC,

    /**
     * Represents the OpenXML cipher family implemented by {@link com.ionic.sdk.agent.cipher.file.OpenXmlFileCipher}.
     */
    FAMILY_OPENXML,

    /**
     * Represents the PDF cipher family implemented by {@link com.ionic.sdk.agent.cipher.file.PdfFileCipher}.
     */
    FAMILY_PDF,

    /**
     * Represents the CSV cipher family implemented by {@link com.ionic.sdk.agent.cipher.file.CsvFileCipher}.
     */
    FAMILY_CSV,
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy