public static enum ValidationError.Type extends java.lang.Enum<ValidationError.Type>
| Enum Constant and Description |
|---|
BLOB_COMPARE_FAILED
Comparing of read blob from SQL table to parsed blob written in bit stream failed.
|
BLOB_PARSE_FAILED
Parsing of read blob from SQL table failed.
|
COLUMN_MISSING
The column is defined in zserio but it is not in SQL table.
|
COLUMN_SUPERFLUOUS
The column is not defined in zserio but it is in SQL table.
|
INVALID_COLUMN_CONSTRAINT
The column constraint in SQL table is different from definition in zserio.
|
INVALID_COLUMN_TYPE
The column type in SQL table is different from definition in zserio.
|
INVALID_ENUM_VALUE
Enumeration value in SQL table is invalid according to the definition in zserio.
|
VALUE_OUT_OF_RANGE
Value in SQL table is out of range according to the definition in zserio.
|
| Modifier and Type | Method and Description |
|---|---|
static ValidationError.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ValidationError.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationError.Type INVALID_COLUMN_TYPE
public static final ValidationError.Type INVALID_COLUMN_CONSTRAINT
public static final ValidationError.Type COLUMN_MISSING
public static final ValidationError.Type COLUMN_SUPERFLUOUS
public static final ValidationError.Type VALUE_OUT_OF_RANGE
public static final ValidationError.Type INVALID_ENUM_VALUE
public static final ValidationError.Type BLOB_PARSE_FAILED
public static final ValidationError.Type BLOB_COMPARE_FAILED
public static ValidationError.Type[] values()
for (ValidationError.Type c : ValidationError.Type.values()) System.out.println(c);
public static ValidationError.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 nullLast updated 2025-10-02 14:26:25