public enum EnumLogMessages extends java.lang.Enum<EnumLogMessages>
| Enum Constant and Description |
|---|
CONN_FAILED |
CONN_SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getMessage() |
static EnumLogMessages |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumLogMessages[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumLogMessages CONN_SUCCESS
public static final EnumLogMessages CONN_FAILED
public static EnumLogMessages[] values()
for (EnumLogMessages c : EnumLogMessages.values()) System.out.println(c);
public static EnumLogMessages valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getMessage()
Copyright © 2020. All Rights Reserved.