Enum LogMessageKind
- java.lang.Object
-
- java.lang.Enum<LogMessageKind>
-
- jetbrains.buildServer.serverSide.buildLog.LogMessageKind
-
- All Implemented Interfaces:
Serializable
,Comparable<LogMessageKind>
public enum LogMessageKind extends Enum<LogMessageKind>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSE_BLOCK
CLOSE_PROGRESS_BLOCK
FLOW_FINISH
FLOW_PARENT
MESSAGE
OPEN_BLOCK
OPEN_PROGRESS_BLOCK
PROGRESS_MESSAGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LogMessageKind
valueOf(String name)
Returns the enum constant of this type with the specified name.static LogMessageKind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPEN_BLOCK
public static final LogMessageKind OPEN_BLOCK
-
CLOSE_BLOCK
public static final LogMessageKind CLOSE_BLOCK
-
MESSAGE
public static final LogMessageKind MESSAGE
-
OPEN_PROGRESS_BLOCK
public static final LogMessageKind OPEN_PROGRESS_BLOCK
-
CLOSE_PROGRESS_BLOCK
public static final LogMessageKind CLOSE_PROGRESS_BLOCK
-
PROGRESS_MESSAGE
public static final LogMessageKind PROGRESS_MESSAGE
-
FLOW_PARENT
public static final LogMessageKind FLOW_PARENT
-
FLOW_FINISH
public static final LogMessageKind FLOW_FINISH
-
-
Method Detail
-
values
public static LogMessageKind[] 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 (LogMessageKind c : LogMessageKind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogMessageKind 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
-
-