Package net.webpdf.wsclient.openapi
Enum OperationQrSwissPaymentBarcode.SeparatorEnum
- java.lang.Object
-
- java.lang.Enum<OperationQrSwissPaymentBarcode.SeparatorEnum>
-
- net.webpdf.wsclient.openapi.OperationQrSwissPaymentBarcode.SeparatorEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OperationQrSwissPaymentBarcode.SeparatorEnum>
- Enclosing class:
- OperationQrSwissPaymentBarcode
public static enum OperationQrSwissPaymentBarcode.SeparatorEnum extends Enum<OperationQrSwissPaymentBarcode.SeparatorEnum>
The border style for separators in between the different parts of the barcode. * none = No separator shall be used. * solidLine = A solid separator line. * solidLineWithScissors = A solid separator line with a scissor icon. * dashedLine = A dashed separator line. * dashedLineWithScissors = A dashed separator line with a scissor icon. * dottedLine = A dotted separator line. * dottedLineWithScissors = A dotted separator line with a scissor icon.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASHEDLINEDASHEDLINEWITHSCISSORSDOTTEDLINEDOTTEDLINEWITHSCISSORSNONESOLIDLINESOLIDLINEWITHSCISSORS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationQrSwissPaymentBarcode.SeparatorEnumfromValue(String value)StringgetValue()StringtoString()static OperationQrSwissPaymentBarcode.SeparatorEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OperationQrSwissPaymentBarcode.SeparatorEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final OperationQrSwissPaymentBarcode.SeparatorEnum NONE
-
SOLIDLINE
public static final OperationQrSwissPaymentBarcode.SeparatorEnum SOLIDLINE
-
SOLIDLINEWITHSCISSORS
public static final OperationQrSwissPaymentBarcode.SeparatorEnum SOLIDLINEWITHSCISSORS
-
DASHEDLINE
public static final OperationQrSwissPaymentBarcode.SeparatorEnum DASHEDLINE
-
DASHEDLINEWITHSCISSORS
public static final OperationQrSwissPaymentBarcode.SeparatorEnum DASHEDLINEWITHSCISSORS
-
DOTTEDLINE
public static final OperationQrSwissPaymentBarcode.SeparatorEnum DOTTEDLINE
-
DOTTEDLINEWITHSCISSORS
public static final OperationQrSwissPaymentBarcode.SeparatorEnum DOTTEDLINEWITHSCISSORS
-
-
Method Detail
-
values
public static OperationQrSwissPaymentBarcode.SeparatorEnum[] 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.SeparatorEnum c : OperationQrSwissPaymentBarcode.SeparatorEnum.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.SeparatorEnum 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.SeparatorEnum>
-
fromValue
public static OperationQrSwissPaymentBarcode.SeparatorEnum fromValue(String value)
-
-