com.digisigner.api
Enum CertificationLevelEnum

java.lang.Object
  extended by java.lang.Enum<CertificationLevelEnum>
      extended by com.digisigner.api.CertificationLevelEnum
All Implemented Interfaces:
Serializable, Comparable<CertificationLevelEnum>

public enum CertificationLevelEnum
extends Enum<CertificationLevelEnum>

Signature certification level.

Author:
DigiSigner Software

Enum Constant Summary
CERTIFIED_FORM_FILLING
          No changes, except the filling of form fields, will be allowed in the signed document.
CERTIFIED_FORM_FILLING_AND_ANNOTATIONS
          No changes, except the filling of form fields and creating annotations, will be allowed in the signed document.
CERTIFIED_NO_CHANGES_ALLOWED
          No changes will be allowed in the signed document.
NOT_CERTIFIED
          No certification, normal signature will be created.
 
Method Summary
static CertificationLevelEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CertificationLevelEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NOT_CERTIFIED

public static final CertificationLevelEnum NOT_CERTIFIED
No certification, normal signature will be created.


CERTIFIED_NO_CHANGES_ALLOWED

public static final CertificationLevelEnum CERTIFIED_NO_CHANGES_ALLOWED
No changes will be allowed in the signed document.


CERTIFIED_FORM_FILLING

public static final CertificationLevelEnum CERTIFIED_FORM_FILLING
No changes, except the filling of form fields, will be allowed in the signed document.


CERTIFIED_FORM_FILLING_AND_ANNOTATIONS

public static final CertificationLevelEnum CERTIFIED_FORM_FILLING_AND_ANNOTATIONS
No changes, except the filling of form fields and creating annotations, will be allowed in the signed document.

Method Detail

values

public static 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 (CertificationLevelEnum c : 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 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 name
NullPointerException - if the argument is null