Uses of Enum
org.apache.commons.vfs2.filter.IOCase
Packages that use IOCase
-
Uses of IOCase in org.apache.commons.vfs2.filter
Methods in org.apache.commons.vfs2.filter that return IOCaseModifier and TypeMethodDescriptionstatic IOCase
Factory method to create an IOCase from a name.static IOCase
Returns the enum constant of this type with the specified name.static IOCase[]
IOCase.values()
Returns an array containing the constants of this enum type, in the order they are declared.Constructors in org.apache.commons.vfs2.filter with parameters of type IOCaseModifierConstructorDescriptionNameFileFilter
(IOCase caseSensitivity, String... names) Constructs a new name file filter for an array of names specifying case-sensitivity.NameFileFilter
(IOCase caseSensitivity, List<String> names) Constructs a new name file filter for a list of names specifying case-sensitivity.PrefixFileFilter
(IOCase caseSensitivity, String... prefixes) Constructs a new Prefix file filter for any of an array of prefixes specifying case-sensitivity.PrefixFileFilter
(IOCase caseSensitivity, List<String> prefixes) Constructs a new Prefix file filter for a list of prefixes specifying case-sensitivity.RegexFileFilter
(String pattern, IOCase caseSensitivity) Constructs a new regular expression filter with the specified flags case sensitivity.SuffixFileFilter
(IOCase caseSensitivity, String... suffixes) Constructs a new Suffix file filter for an array of suffixes specifying case-sensitivity.SuffixFileFilter
(IOCase caseSensitivity, List<String> suffixes) Constructs a new Suffix file filter for a list of suffixes specifying case-sensitivity.WildcardFileFilter
(IOCase caseSensitivity, String... wildcards) Constructs a new wildcard filter for an array of wildcards specifying case-sensitivity.WildcardFileFilter
(IOCase caseSensitivity, List<String> wildcards) Constructs a new wildcard filter for a list of wildcards specifying case-sensitivity.