public enum FilterGroupType extends Enum<FilterGroupType>
| Enum Constant and Description |
|---|
AND
Filter accepts file if all of grouped filters accept that file.
|
OR
Filter accepts file if at least one of grouped filters accept that file.
|
| Modifier and Type | Method and Description |
|---|---|
static FilterGroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterGroupType OR
public static final FilterGroupType AND
public static FilterGroupType[] values()
for (FilterGroupType c : FilterGroupType.values()) System.out.println(c);
public static FilterGroupType 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 © 2020. All rights reserved.