public enum CombinationFilterMode extends java.lang.Enum<CombinationFilterMode>
Used solely to define type-safe mode values for
CombinationFilenameFilter
and CombinationFileFilter
.
CombinationFileFilter
,
CombinationFilenameFilter
Enum Constant and Description |
---|
AND_FILTERS
Mode setting that instructs the filter to AND all the
contained filters.
|
OR_FILTERS
Mode setting that instructs the filter to OR all the
contained filters.
|
Modifier and Type | Method and Description |
---|---|
static CombinationFilterMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CombinationFilterMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CombinationFilterMode AND_FILTERS
public static final CombinationFilterMode OR_FILTERS
public static CombinationFilterMode[] values()
for (CombinationFilterMode c : CombinationFilterMode.values()) System.out.println(c);
public static CombinationFilterMode 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