public enum MSDeployLogEntryType extends Enum<MSDeployLogEntryType>
| Enum Constant and Description |
|---|
ERROR
Enum value Error.
|
MESSAGE
Enum value Message.
|
WARNING
Enum value Warning.
|
| Modifier and Type | Method and Description |
|---|---|
static MSDeployLogEntryType |
fromString(String value)
Parses a serialized value to a MSDeployLogEntryType instance.
|
String |
toString() |
static MSDeployLogEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MSDeployLogEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MSDeployLogEntryType MESSAGE
public static final MSDeployLogEntryType WARNING
public static final MSDeployLogEntryType ERROR
public static MSDeployLogEntryType[] values()
for (MSDeployLogEntryType c : MSDeployLogEntryType.values()) System.out.println(c);
public static MSDeployLogEntryType 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 MSDeployLogEntryType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<MSDeployLogEntryType>Copyright © 2019. All rights reserved.