public static enum ValidationReport.RESULT extends Enum<ValidationReport.RESULT>
| Enum Constant and Description |
|---|
ATTRIBUTE_NOT_FOUND |
DIMENSION_NOT_FOUND |
INTERNAL_ERROR |
INVALID_DATA_TYPE |
INVALID_DIMENSIONS |
INVALID_N_COLUMNS |
OK |
PRIMARY_MEASURE_NOT_FOUND |
TIME_DIMENSION_NOT_FOUND |
| Modifier and Type | Method and Description |
|---|---|
static ValidationReport.RESULT |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationReport.RESULT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationReport.RESULT INVALID_N_COLUMNS
public static final ValidationReport.RESULT INVALID_DATA_TYPE
public static final ValidationReport.RESULT INVALID_DIMENSIONS
public static final ValidationReport.RESULT PRIMARY_MEASURE_NOT_FOUND
public static final ValidationReport.RESULT DIMENSION_NOT_FOUND
public static final ValidationReport.RESULT TIME_DIMENSION_NOT_FOUND
public static final ValidationReport.RESULT ATTRIBUTE_NOT_FOUND
public static final ValidationReport.RESULT INTERNAL_ERROR
public static final ValidationReport.RESULT OK
public static ValidationReport.RESULT[] values()
for (ValidationReport.RESULT c : ValidationReport.RESULT.values()) System.out.println(c);
public static ValidationReport.RESULT 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 © 2017. All Rights Reserved.