public static enum CollectorPipeBase.Action extends Enum<CollectorPipeBase.Action>
Enum Constant and Description |
---|
CLOSE
Finalize the collection
|
LAST
Combination of WRITE and CLOSE: Add an item to to an existing collection, then finalize the collection
|
OPEN
To initiate a new collection
|
STREAM
Deprecated.
|
WRITE
Add an item to to an existing collection
|
Modifier and Type | Method and Description |
---|---|
static CollectorPipeBase.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectorPipeBase.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectorPipeBase.Action OPEN
public static final CollectorPipeBase.Action WRITE
public static final CollectorPipeBase.Action LAST
public static final CollectorPipeBase.Action CLOSE
@Deprecated public static final CollectorPipeBase.Action STREAM
public static CollectorPipeBase.Action[] values()
for (CollectorPipeBase.Action c : CollectorPipeBase.Action.values()) System.out.println(c);
public static CollectorPipeBase.Action 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 © 2023 Frank!Framework. All rights reserved.