public enum DataValidationErrorStyle extends Enum<DataValidationErrorStyle>
Enum Constant and Description |
---|
INFORMATION
This data validation error style uses an information icon in the error alert.
|
STOP
This data validation error style uses a stop icon in the error alert.
|
WARNING
This data validation error style uses a warning icon in the error alert.
|
Modifier and Type | Method and Description |
---|---|
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 INFORMATION
public static final DataValidationErrorStyle STOP
public static final DataValidationErrorStyle WARNING
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 static DataValidationErrorStyle[] values()
for (DataValidationErrorStyle c : DataValidationErrorStyle.values()) System.out.println(c);
© GemBox Ltd. — All rights reserved.