Package net.webpdf.wsclient.openapi
Enum OperationQrSwissPaymentBarcode.FormatEnum
- java.lang.Object
-
- java.lang.Enum<OperationQrSwissPaymentBarcode.FormatEnum>
-
- net.webpdf.wsclient.openapi.OperationQrSwissPaymentBarcode.FormatEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationQrSwissPaymentBarcode.FormatEnum>
- Enclosing class:
- OperationQrSwissPaymentBarcode
public static enum OperationQrSwissPaymentBarcode.FormatEnum extends Enum<OperationQrSwissPaymentBarcode.FormatEnum>
Used to select the parts, that shall be included in the barcode. * codeOnly = Only the barcode itself shall be shown. * billOnly = The barcode and the payment summary shall be shown. * billPortraitSheet = The dimensions of the barcode and the payment summary shall be optimized for placement in the lower left corner of a page in DIN-A4 format. * billExtraSpace = The same as \"billPortraitSheet\", but with extra spacings.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BILLEXTRASPACEBILLONLYBILLPORTRAITSHEETCODEONLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationQrSwissPaymentBarcode.FormatEnumfromValue(String value)StringgetValue()StringtoString()static OperationQrSwissPaymentBarcode.FormatEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationQrSwissPaymentBarcode.FormatEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CODEONLY
public static final OperationQrSwissPaymentBarcode.FormatEnum CODEONLY
-
BILLONLY
public static final OperationQrSwissPaymentBarcode.FormatEnum BILLONLY
-
BILLPORTRAITSHEET
public static final OperationQrSwissPaymentBarcode.FormatEnum BILLPORTRAITSHEET
-
BILLEXTRASPACE
public static final OperationQrSwissPaymentBarcode.FormatEnum BILLEXTRASPACE
-
-
Method Detail
-
values
public static OperationQrSwissPaymentBarcode.FormatEnum[] 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 (OperationQrSwissPaymentBarcode.FormatEnum c : OperationQrSwissPaymentBarcode.FormatEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationQrSwissPaymentBarcode.FormatEnum 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<OperationQrSwissPaymentBarcode.FormatEnum>
-
fromValue
public static OperationQrSwissPaymentBarcode.FormatEnum fromValue(String value)
-
-