public static enum ValidationMessage.Type extends java.lang.Enum<ValidationMessage.Type>
| Modifier and Type | Method and Description |
|---|---|
static ValidationMessage.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationMessage.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationMessage.Type Warning
A warning does not prevent the QR bill from being generated. Warnings usually indicate that data was truncated or otherwise modified.
public static final ValidationMessage.Type Error
Errors prevent the QR bill from being generated.
public static ValidationMessage.Type[] values()
for (ValidationMessage.Type c : ValidationMessage.Type.values()) System.out.println(c);
public static ValidationMessage.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null