Package net.webpdf.wsclient.openapi
Enum OperationAddBarcode.OutputFormatEnum
- java.lang.Object
-
- java.lang.Enum<OperationAddBarcode.OutputFormatEnum>
-
- net.webpdf.wsclient.openapi.OperationAddBarcode.OutputFormatEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationAddBarcode.OutputFormatEnum>
- Enclosing class:
- OperationAddBarcode
public static enum OperationAddBarcode.OutputFormatEnum extends Enum<OperationAddBarcode.OutputFormatEnum>
Defines the output format for the barcode generation. The resulting document will be created by this webservice, where selected image formats will completly ignore a possibly given PDF source document and will only contain the barcode image. **Important:** This parameter is for internal use only. Please only set this value to anything other than \"pdf\", if you are really sure that you need to do so.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationAddBarcode.OutputFormatEnumfromValue(String value)StringgetValue()StringtoString()static OperationAddBarcode.OutputFormatEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationAddBarcode.OutputFormatEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PDF
public static final OperationAddBarcode.OutputFormatEnum PDF
-
BMP
public static final OperationAddBarcode.OutputFormatEnum BMP
-
JPG
public static final OperationAddBarcode.OutputFormatEnum JPG
-
PNG
public static final OperationAddBarcode.OutputFormatEnum PNG
-
TIF
public static final OperationAddBarcode.OutputFormatEnum TIF
-
-
Method Detail
-
values
public static OperationAddBarcode.OutputFormatEnum[] 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 (OperationAddBarcode.OutputFormatEnum c : OperationAddBarcode.OutputFormatEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationAddBarcode.OutputFormatEnum 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<OperationAddBarcode.OutputFormatEnum>
-
fromValue
public static OperationAddBarcode.OutputFormatEnum fromValue(String value)
-
-