public enum DataValidationErrorStyle extends Enum<DataValidationErrorStyle>
| Enum Constant and Description |
|---|
INFORMATION |
STOP |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DataValidationErrorStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataValidationErrorStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataValidationErrorStyle STOP
public static final DataValidationErrorStyle WARNING
public static final DataValidationErrorStyle INFORMATION
public static DataValidationErrorStyle[] values()
for (DataValidationErrorStyle c : DataValidationErrorStyle.values()) System.out.println(c);
public static DataValidationErrorStyle 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 nullpublic String toString()
toString in class Enum<DataValidationErrorStyle>Copyright © 2023. All rights reserved.