public enum ItemVisibility extends Enum<ItemVisibility>
Enum Constant and Description |
---|
INVISIBLE
Item is excluded from the history for the purposes of data provenance, and
also excluded as a parameter when recording scripts.
|
MESSAGE
As
INVISIBLE , and further indicating that the item's value is
intended as a message to the user (e.g., in the input harvester panel)
rather than an actual parameter to the module execution. |
NORMAL
Item is included in the history for purposes of data provenance, and
included as a parameter when recording scripts.
|
TRANSIENT
Item is excluded from the history for the purposes of data provenance, but
still included as a parameter when recording scripts.
|
Modifier and Type | Method and Description |
---|---|
static ItemVisibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ItemVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ItemVisibility NORMAL
public static final ItemVisibility TRANSIENT
public static final ItemVisibility INVISIBLE
public static final ItemVisibility MESSAGE
INVISIBLE
, and further indicating that the item's value is
intended as a message to the user (e.g., in the input harvester panel)
rather than an actual parameter to the module execution.public static ItemVisibility[] values()
for (ItemVisibility c : ItemVisibility.values()) System.out.println(c);
public static ItemVisibility 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 nullCopyright © 2015–2022 SciJava. All rights reserved.