Enum WebServiceType

    • Enum Constant Detail

      • CONVERTER

        public static final WebServiceType CONVERTER
        The Converter webservice provides the means to convert different file formats to PDF.
      • TOOLBOX

        public static final WebServiceType TOOLBOX
        The Toolbox webservice provides the means to manipulate and analyze documents.
      • PDFA

        public static final WebServiceType PDFA
        The Pdfa webservice provides the means to convert a PDF document to PDF/A.
      • OCR

        public static final WebServiceType OCR
        The OCR webservice allows to recognize text and add a text layer to documents.
      • SIGNATURE

        public static final WebServiceType SIGNATURE
        The Signature webservice allows adding digital signatures to documents.
      • URLCONVERTER

        public static final WebServiceType URLCONVERTER
        The URLConverter webservice allows converting a URL resource to PDF.
      • BARCODE

        public static final WebServiceType BARCODE
        The Barcode webservice allows creating barcodes for and reading barcodes from documents.
    • Method Detail

      • values

        public static WebServiceType[] 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 (WebServiceType c : WebServiceType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WebServiceType 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