|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ItemVisibility>
org.scijava.ItemVisibility
public enum ItemVisibility
Defines the "visibility" of a parameter.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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.
Method Detail |
---|
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 name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |