public enum PhotoFilter extends java.lang.Enum<PhotoFilter>
| Enum Constant and Description |
|---|
AUTO_FIX |
BLACK_WHITE |
BRIGHTNESS |
CONTRAST |
CROSS_PROCESS |
DOCUMENTARY |
DUE_TONE |
FILL_LIGHT |
FISH_EYE |
FLIP_HORIZONTAL |
FLIP_VERTICAL |
GRAIN |
GRAY_SCALE |
LOMISH |
NEGATIVE |
NONE |
POSTERIZE |
ROTATE |
SATURATE |
SEPIA |
SHARPEN |
TEMPERATURE |
TINT |
VIGNETTE |
| Modifier and Type | Method and Description |
|---|---|
static PhotoFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PhotoFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhotoFilter NONE
public static final PhotoFilter AUTO_FIX
public static final PhotoFilter BLACK_WHITE
public static final PhotoFilter BRIGHTNESS
public static final PhotoFilter CONTRAST
public static final PhotoFilter CROSS_PROCESS
public static final PhotoFilter DOCUMENTARY
public static final PhotoFilter DUE_TONE
public static final PhotoFilter FILL_LIGHT
public static final PhotoFilter FISH_EYE
public static final PhotoFilter FLIP_VERTICAL
public static final PhotoFilter FLIP_HORIZONTAL
public static final PhotoFilter GRAIN
public static final PhotoFilter GRAY_SCALE
public static final PhotoFilter LOMISH
public static final PhotoFilter NEGATIVE
public static final PhotoFilter POSTERIZE
public static final PhotoFilter ROTATE
public static final PhotoFilter SATURATE
public static final PhotoFilter SEPIA
public static final PhotoFilter SHARPEN
public static final PhotoFilter TEMPERATURE
public static final PhotoFilter TINT
public static final PhotoFilter VIGNETTE
public static PhotoFilter[] values()
for (PhotoFilter c : PhotoFilter.values()) System.out.println(c);
public static PhotoFilter 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