Package in.hocg.boot.utils.utils
Enum LogUtils.LogStatus
- java.lang.Object
-
- java.lang.Enum<LogUtils.LogStatus>
-
- in.hocg.boot.utils.utils.LogUtils.LogStatus
-
- All Implemented Interfaces:
Serializable,Comparable<LogUtils.LogStatus>
- Enclosing class:
- LogUtils
public static enum LogUtils.LogStatus extends Enum<LogUtils.LogStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogUtils.LogStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static LogUtils.LogStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Process
public static final LogUtils.LogStatus Process
-
Fail
public static final LogUtils.LogStatus Fail
-
Success
public static final LogUtils.LogStatus Success
-
-
Method Detail
-
values
public static LogUtils.LogStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LogUtils.LogStatus c : LogUtils.LogStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogUtils.LogStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-