public static enum Line.ShowOpenType extends Enum<Line.ShowOpenType>
show
,
ShowVisibilityType
Enum Constant and Description |
---|
NONE
shows the line only if the editor is open
|
OPEN
opens editor if necessary (editor was not opened) and shows the line
|
REUSE
replaces editor marked for reuse (last editor opened using
Line.ShowOpenType.REUSE
or Line.ShowOpenType.REUSE_NEW and opens editor if necessary, if editor is being opened (editor was not opened)
marks it for reuse, shows the line |
REUSE_NEW
ignores editor marked for reuse (resets reference to editor marked for reuse),
opens editor if necessary, if editor is being opened (editor was not opened)
marks it for reuse, shows the line
|
Modifier and Type | Method and Description |
---|---|
static Line.ShowOpenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Line.ShowOpenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Line.ShowOpenType NONE
public static final Line.ShowOpenType OPEN
public static final Line.ShowOpenType REUSE
Line.ShowOpenType.REUSE
or Line.ShowOpenType.REUSE_NEW
and opens editor if necessary, if editor is being opened (editor was not opened)
marks it for reuse, shows the linepublic static final Line.ShowOpenType REUSE_NEW
public static Line.ShowOpenType[] values()
public static Line.ShowOpenType 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 null