public enum FilterType extends Enum<FilterType>
| Enum Constant and Description |
|---|
FILTER_AUDIO |
FILTER_DELTA |
FILTER_E8 |
FILTER_E8E9 |
FILTER_E8E9V2 |
FILTER_ITANIUM |
FILTER_NONE |
FILTER_PPM |
FILTER_RGB |
FILTER_UPCASETOLOW |
| Modifier and Type | Method and Description |
|---|---|
static FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType FILTER_NONE
public static final FilterType FILTER_PPM
public static final FilterType FILTER_E8
public static final FilterType FILTER_E8E9
public static final FilterType FILTER_UPCASETOLOW
public static final FilterType FILTER_AUDIO
public static final FilterType FILTER_RGB
public static final FilterType FILTER_DELTA
public static final FilterType FILTER_ITANIUM
public static final FilterType FILTER_E8E9V2
public static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);
public static FilterType 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.