public enum CompletionKind extends java.lang.Enum<CompletionKind>
Enum Constant and Description |
---|
job
A job definition.
|
module
A composed module, which starts or ends on a processor.
|
stream
A full stream definition, which ought to start with a source (or channel) and end with a sink (or channel).
|
Modifier and Type | Method and Description |
---|---|
static CompletionKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompletionKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompletionKind stream
public static final CompletionKind module
public static final CompletionKind job
public static CompletionKind[] values()
for (CompletionKind c : CompletionKind.values()) System.out.println(c);
public static CompletionKind 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