Package net.codecrete.qrbill.generator
Enum Class SeparatorType
- All Implemented Interfaces:
Serializable
,Comparable<SeparatorType>
,Constable
Separator type above and between payment part and receipt
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDashed lines are drawnDashed lines with a scissor symbol are drawnDotted lines are drawnDotted lines with a scissor symbol are drawnNo separators are drawn (because paper has perforation)Solid lines are drawnSolid lines with a scissor symbol are drawn -
Method Summary
Modifier and TypeMethodDescriptionstatic SeparatorType
Returns the enum constant of this class with the specified name.static SeparatorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
No separators are drawn (because paper has perforation) -
SOLID_LINE
Solid lines are drawn -
SOLID_LINE_WITH_SCISSORS
Solid lines with a scissor symbol are drawn -
DASHED_LINE
Dashed lines are drawn -
DASHED_LINE_WITH_SCISSORS
Dashed lines with a scissor symbol are drawn -
DOTTED_LINE
Dotted lines are drawn -
DOTTED_LINE_WITH_SCISSORS
Dotted lines with a scissor symbol are drawn
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-