public enum DataSenseNotificationType extends Enum<DataSenseNotificationType>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
FATAL_ERROR |
INFO |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static DataSenseNotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataSenseNotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataSenseNotificationType FATAL_ERROR
public static final DataSenseNotificationType ERROR
public static final DataSenseNotificationType WARNING
public static final DataSenseNotificationType INFO
public static final DataSenseNotificationType DEBUG
public static DataSenseNotificationType[] values()
for (DataSenseNotificationType c : DataSenseNotificationType.values()) System.out.println(c);
public static DataSenseNotificationType 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 © 2022 MuleSoft, Inc.. All rights reserved.