Serializable
, Comparable<ShowOperation>
public enum ShowOperation extends Enum<ShowOperation>
Enum Constant | Description |
---|---|
ACTIVATE |
Activate the GUI component (Output Window).
|
MAKE_VISIBLE |
Make the GUI component (Output Window) visible.
|
OPEN |
Open the GUI component (Output Window) if it is closed.
|
Modifier and Type | Method | Description |
---|---|---|
static ShowOperation |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ShowOperation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShowOperation OPEN
public static final ShowOperation MAKE_VISIBLE
public static final ShowOperation ACTIVATE
public static ShowOperation[] values()
for (ShowOperation c : ShowOperation.values()) System.out.println(c);
public static ShowOperation 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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.