Package net.webpdf.wsclient.openapi
Enum OperationEncryptCertificate.ContentEncryptionEnum
- java.lang.Object
-
- java.lang.Enum<OperationEncryptCertificate.ContentEncryptionEnum>
-
- net.webpdf.wsclient.openapi.OperationEncryptCertificate.ContentEncryptionEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationEncryptCertificate.ContentEncryptionEnum>
- Enclosing class:
- OperationEncryptCertificate
public static enum OperationEncryptCertificate.ContentEncryptionEnum extends Enum<OperationEncryptCertificate.ContentEncryptionEnum>
Specifies whether certain contents should be treated differently than others during encryption. * encryptEverything = All contents of the document are encrypted without distinction (if provided by the standard). * exposeMetadata = The document's metadata is left unencrypted to make it discoverable by processing programs. (Has an effect only for 128 bit and 256 bit AES).
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ENCRYPTEVERYTHINGEXPOSEMETADATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationEncryptCertificate.ContentEncryptionEnumfromValue(String value)StringgetValue()StringtoString()static OperationEncryptCertificate.ContentEncryptionEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationEncryptCertificate.ContentEncryptionEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENCRYPTEVERYTHING
public static final OperationEncryptCertificate.ContentEncryptionEnum ENCRYPTEVERYTHING
-
EXPOSEMETADATA
public static final OperationEncryptCertificate.ContentEncryptionEnum EXPOSEMETADATA
-
-
Method Detail
-
values
public static OperationEncryptCertificate.ContentEncryptionEnum[] 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 (OperationEncryptCertificate.ContentEncryptionEnum c : OperationEncryptCertificate.ContentEncryptionEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationEncryptCertificate.ContentEncryptionEnum valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OperationEncryptCertificate.ContentEncryptionEnum>
-
fromValue
public static OperationEncryptCertificate.ContentEncryptionEnum fromValue(String value)
-
-