public enum Flag extends java.lang.Enum<Flag>
Flags list, which
is part of the BasicData for an UpdateRecipe as per
Connector API.| Enum Constant and Description |
|---|
CAMERA_RAW
File format is camera raw.
|
HAS_ICON
File is associated with Icons
|
HAS_XMP
File is associated with XMP metadata.
|
| Modifier and Type | Method and Description |
|---|---|
static Flag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag CAMERA_RAW
public static final Flag HAS_XMP
public static final Flag HAS_ICON
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag 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"Copyright © 2010 - 2018 Adobe Systems Incorporated. All Rights Reserved"