public enum OutputEventArgumentsGroup extends java.lang.Enum<OutputEventArgumentsGroup>
| Enum Constant and Description |
|---|
END
End the current group and decreases the indentation of subsequent output events.
|
START
Start a new group in expanded mode.
|
START_COLLAPSED
Start a new group in collapsed mode.
|
| Modifier and Type | Method and Description |
|---|---|
static OutputEventArgumentsGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OutputEventArgumentsGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputEventArgumentsGroup START
public static final OutputEventArgumentsGroup START_COLLAPSED
public static final OutputEventArgumentsGroup END
public static OutputEventArgumentsGroup[] values()
for (OutputEventArgumentsGroup c : OutputEventArgumentsGroup.values()) System.out.println(c);
public static OutputEventArgumentsGroup 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 null