Enum QrSwissPaymentFormatType
- java.lang.Object
-
- java.lang.Enum<QrSwissPaymentFormatType>
-
- net.webpdf.wsclient.schema.operation.QrSwissPaymentFormatType
-
- All Implemented Interfaces:
Serializable,Comparable<QrSwissPaymentFormatType>
public enum QrSwissPaymentFormatType extends Enum<QrSwissPaymentFormatType>
Java class for QrSwissPaymentFormatType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="QrSwissPaymentFormatType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="codeOnly"/> <enumeration value="billOnly"/> <enumeration value="billPortraitSheet"/> <enumeration value="billExtraSpace"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BILL_EXTRA_SPACEBILL_ONLYBILL_PORTRAIT_SHEETCODE_ONLY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QrSwissPaymentFormatTypefromValue(String v)Stringvalue()static QrSwissPaymentFormatTypevalueOf(String name)Returns the enum constant of this type with the specified name.static QrSwissPaymentFormatType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CODE_ONLY
public static final QrSwissPaymentFormatType CODE_ONLY
-
BILL_ONLY
public static final QrSwissPaymentFormatType BILL_ONLY
-
BILL_PORTRAIT_SHEET
public static final QrSwissPaymentFormatType BILL_PORTRAIT_SHEET
-
BILL_EXTRA_SPACE
public static final QrSwissPaymentFormatType BILL_EXTRA_SPACE
-
-
Method Detail
-
values
public static QrSwissPaymentFormatType[] 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 (QrSwissPaymentFormatType c : QrSwissPaymentFormatType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QrSwissPaymentFormatType 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
-
value
public String value()
-
fromValue
public static QrSwissPaymentFormatType fromValue(String v)
-
-