Package net.webpdf.wsclient.openapi
Enum AdminExecutableName
- java.lang.Object
-
- java.lang.Enum<AdminExecutableName>
-
- net.webpdf.wsclient.openapi.AdminExecutableName
-
- All Implemented Interfaces:
Serializable,Comparable<AdminExecutableName>
public enum AdminExecutableName extends Enum<AdminExecutableName>
Selects an executable for validation. - outsideIn = The main conversion engine responsible for the conversion of different file formats to PDF. - fisimple = An application to detect file formats. - tesseract = The OCR engine used by webPDF. - pdftools = A set of tools for PDF manipulation, mostly used for PDF/A conversion. - officeBridge = An executable, that allows to convert MS office documents using their native applications. - sharePointBridge = An executable, that allows to convert MS office documents using MS SharePoint. - chromium = An executable, that allows converting html and mail contents using chromium. - imageMagick = An engine for the manipulation and analysis of image formats.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHROMIUMFISIMPLEIMAGEMAGICKOFFICEBRIDGEOUTSIDEINPDFTOOLSSHAREPOINTBRIDGETESSERACT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminExecutableNamefromValue(String value)StringgetValue()StringtoString()StringtoUrlQueryString(String prefix)Convert the instance into URL query string.static AdminExecutableNamevalueOf(String name)Returns the enum constant of this type with the specified name.static AdminExecutableName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OUTSIDEIN
public static final AdminExecutableName OUTSIDEIN
-
FISIMPLE
public static final AdminExecutableName FISIMPLE
-
TESSERACT
public static final AdminExecutableName TESSERACT
-
PDFTOOLS
public static final AdminExecutableName PDFTOOLS
-
OFFICEBRIDGE
public static final AdminExecutableName OFFICEBRIDGE
-
SHAREPOINTBRIDGE
public static final AdminExecutableName SHAREPOINTBRIDGE
-
CHROMIUM
public static final AdminExecutableName CHROMIUM
-
IMAGEMAGICK
public static final AdminExecutableName IMAGEMAGICK
-
-
Method Detail
-
values
public static AdminExecutableName[] 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 (AdminExecutableName c : AdminExecutableName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminExecutableName 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<AdminExecutableName>
-
fromValue
public static AdminExecutableName fromValue(String value)
-
-