public enum FilterTypeEnum extends Enum<FilterTypeEnum>
| Enum Constant and Description |
|---|
ALTERHSB |
ALTERRGB |
AUTOLEVELSRGB |
CROP |
GAUSSIANBLUR |
RESIZE |
ROTATE |
UNSHARPMASK |
| Modifier and Type | Method and Description |
|---|---|
static FilterTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterTypeEnum ALTERHSB
public static final FilterTypeEnum ALTERRGB
public static final FilterTypeEnum AUTOLEVELSRGB
public static final FilterTypeEnum CROP
public static final FilterTypeEnum GAUSSIANBLUR
public static final FilterTypeEnum RESIZE
public static final FilterTypeEnum ROTATE
public static final FilterTypeEnum UNSHARPMASK
public static FilterTypeEnum[] values()
for (FilterTypeEnum c : FilterTypeEnum.values()) System.out.println(c);
public static FilterTypeEnum 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 © 2017. All rights reserved.