Package net.webpdf.wsclient.openapi
Enum OperationPdfaSettings.PdfaEditProfileEnum
- java.lang.Object
-
- java.lang.Enum<OperationPdfaSettings.PdfaEditProfileEnum>
-
- net.webpdf.wsclient.openapi.OperationPdfaSettings.PdfaEditProfileEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationPdfaSettings.PdfaEditProfileEnum>
- Enclosing class:
- OperationPdfaSettings
public static enum OperationPdfaSettings.PdfaEditProfileEnum extends Enum<OperationPdfaSettings.PdfaEditProfileEnum>
Defines the profile whose rules web services have to check before they can come to execution. These profiles define a set of rules concerning the validity of PDF/A documents. A web service whose execution for a given PDF/A document would violate the rule set selected here should instead abort with an appropriate error code. * generalEditRestrictions = All changes to PDF/A documents are prohibited. * removePdfaMetadata = All changes to PDF/A documents are allowed, but the PDF/A state of the document is revoked. (By removing the PDF/A metadata.) * noEditRestrictions = All changes to PDF/A documents are allowed, without touching the PDF/A state of the document. (Risking the invalidation of the document.)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GENERALEDITRESTRICTIONSNOEDITRESTRICTIONSREMOVEPDFAMETADATA
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationPdfaSettings.PdfaEditProfileEnumfromValue(String value)StringgetValue()StringtoString()static OperationPdfaSettings.PdfaEditProfileEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationPdfaSettings.PdfaEditProfileEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERALEDITRESTRICTIONS
public static final OperationPdfaSettings.PdfaEditProfileEnum GENERALEDITRESTRICTIONS
-
REMOVEPDFAMETADATA
public static final OperationPdfaSettings.PdfaEditProfileEnum REMOVEPDFAMETADATA
-
NOEDITRESTRICTIONS
public static final OperationPdfaSettings.PdfaEditProfileEnum NOEDITRESTRICTIONS
-
-
Method Detail
-
values
public static OperationPdfaSettings.PdfaEditProfileEnum[] 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 (OperationPdfaSettings.PdfaEditProfileEnum c : OperationPdfaSettings.PdfaEditProfileEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationPdfaSettings.PdfaEditProfileEnum 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<OperationPdfaSettings.PdfaEditProfileEnum>
-
fromValue
public static OperationPdfaSettings.PdfaEditProfileEnum fromValue(String value)
-
-