public static enum CollectionActor.Action extends Enum<CollectionActor.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
Create a new collection entry, and return an OutputStream that the next element can use to write an item to
|
WRITE
Add an item to to an existing collection
|
Modifier and Type | Method and Description |
---|---|
static CollectionActor.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CollectionActor.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CollectionActor.Action OPEN
public static final CollectionActor.Action WRITE
public static final CollectionActor.Action STREAM
public static final CollectionActor.Action LAST
public static final CollectionActor.Action CLOSE
public static CollectionActor.Action[] values()
for (CollectionActor.Action c : CollectionActor.Action.values()) System.out.println(c);
public static CollectionActor.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.