public static enum LayoutFileOperations.SinkOrSource extends java.lang.Enum<LayoutFileOperations.SinkOrSource>
| Enum Constant and Description |
|---|
NONE
Categorize entity as neither a sink or source.
|
SINK
Categorize entity as a sink.
|
SINK_AND_SOURCE
Categorize entity as both a sink and a source.
|
SOURCE
Categorize entity as a source.
|
| Modifier and Type | Method and Description |
|---|---|
static LayoutFileOperations.SinkOrSource |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutFileOperations.SinkOrSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutFileOperations.SinkOrSource SINK
public static final LayoutFileOperations.SinkOrSource SOURCE
public static final LayoutFileOperations.SinkOrSource SINK_AND_SOURCE
public static final LayoutFileOperations.SinkOrSource NONE
public static LayoutFileOperations.SinkOrSource[] values()
for (LayoutFileOperations.SinkOrSource c : LayoutFileOperations.SinkOrSource.values()) System.out.println(c);
public static LayoutFileOperations.SinkOrSource 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