public enum Flag extends 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(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(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 null"Copyright © 2006 - 2015 Adobe Systems Incorporated. All Rights Reserved"