public static enum ConformanceError.Type extends Enum<ConformanceError.Type>
| Enum Constant and Description |
|---|
BROKEN_CONSTRAINT |
DATA_NOT_MATCHING_CRITERIA |
MISSING_PROPERTY |
MISSING_VALUE |
NO_MATCHING_MODEL |
NUMBER_TOO_BIG |
NUMBER_TOO_SMALL |
PATTERN_NOT_MATCHED |
| Modifier and Type | Method and Description |
|---|---|
static ConformanceError.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConformanceError.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConformanceError.Type MISSING_PROPERTY
public static final ConformanceError.Type MISSING_VALUE
public static final ConformanceError.Type NO_MATCHING_MODEL
public static final ConformanceError.Type BROKEN_CONSTRAINT
public static final ConformanceError.Type PATTERN_NOT_MATCHED
public static final ConformanceError.Type NUMBER_TOO_SMALL
public static final ConformanceError.Type NUMBER_TOO_BIG
public static final ConformanceError.Type DATA_NOT_MATCHING_CRITERIA
public static ConformanceError.Type[] values()
for (ConformanceError.Type c : ConformanceError.Type.values()) System.out.println(c);
public static ConformanceError.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019. All rights reserved.