Package net.webpdf.wsclient.openapi
Enum OperationAddSignature.CertificationLevelEnum
- java.lang.Object
-
- java.lang.Enum<OperationAddSignature.CertificationLevelEnum>
-
- net.webpdf.wsclient.openapi.OperationAddSignature.CertificationLevelEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationAddSignature.CertificationLevelEnum>
- Enclosing class:
- OperationAddSignature
public static enum OperationAddSignature.CertificationLevelEnum extends Enum<OperationAddSignature.CertificationLevelEnum>
This parameter defines the level of the signature. * none = Sign, but do not certify, the document, i.e., additional signatures and changes will be allowed. * noChanges = Certify the document and do not allow any additional changes anymore. * formFillingAndSignatures = Certify the document, but allow for fields to be filled out. * formFillingAndSignaturesAndAnnotations = Certify the document, but allow for fields to be filled out and annotations to be added.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORMFILLINGANDSIGNATURESFORMFILLINGANDSIGNATURESANDANNOTATIONSNOCHANGESNONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationAddSignature.CertificationLevelEnumfromValue(String value)StringgetValue()StringtoString()static OperationAddSignature.CertificationLevelEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationAddSignature.CertificationLevelEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationAddSignature.CertificationLevelEnum NONE
-
NOCHANGES
public static final OperationAddSignature.CertificationLevelEnum NOCHANGES
-
FORMFILLINGANDSIGNATURES
public static final OperationAddSignature.CertificationLevelEnum FORMFILLINGANDSIGNATURES
-
FORMFILLINGANDSIGNATURESANDANNOTATIONS
public static final OperationAddSignature.CertificationLevelEnum FORMFILLINGANDSIGNATURESANDANNOTATIONS
-
-
Method Detail
-
values
public static OperationAddSignature.CertificationLevelEnum[] 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 (OperationAddSignature.CertificationLevelEnum c : OperationAddSignature.CertificationLevelEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationAddSignature.CertificationLevelEnum 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<OperationAddSignature.CertificationLevelEnum>
-
fromValue
public static OperationAddSignature.CertificationLevelEnum fromValue(String value)
-
-