public static enum BlobComponent.OptionedAction extends java.lang.Enum<BlobComponent.OptionedAction>
Differently from the 'download' operation, for the 'open' operation there is an interest to provide a dedicated command that unconditionally (without asking the user) triggers an iteration on the set of the underlying records: 'iteratingOpen' derives from this.
Enum Constant and Description |
---|
download |
iteratingOpen |
open |
Modifier and Type | Method and Description |
---|---|
static BlobComponent.OptionedAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlobComponent.OptionedAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlobComponent.OptionedAction open
public static final BlobComponent.OptionedAction download
public static final BlobComponent.OptionedAction iteratingOpen
public static BlobComponent.OptionedAction[] values()
for (BlobComponent.OptionedAction c : BlobComponent.OptionedAction.values()) System.out.println(c);
public static BlobComponent.OptionedAction 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