public enum ImageAction extends Enum<ImageAction>
| Enum Constant and Description |
|---|
cancelRemoteCopy
The action to cancelRemoteCopy the image.
|
remoteCopy
The action to remoteCopy the image.
|
share
The action to share the image.
|
unshare
The action to unshare the image.
|
| Modifier and Type | Method and Description |
|---|---|
static ImageAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageAction share
public static final ImageAction unshare
public static final ImageAction remoteCopy
public static final ImageAction cancelRemoteCopy
public static ImageAction[] values()
for (ImageAction c : ImageAction.values()) System.out.println(c);
public static ImageAction 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 © 2020. All rights reserved.