Uses of Class org.apache.commons.io.IOCase

Uses in package org.apache.commons.io

Fields of type org.apache.commons.io.IOCase

IOCase
The constant for case insensitive regardless of operating system.
IOCase
The constant for case sensitive regardless of operating system.
IOCase
The constant for case sensitivity determined by the current operating system.

Methods with parameter type org.apache.commons.io.IOCase

boolean
FilenameUtils.equals(String filename1, String filename2, boolean normalized, IOCase caseSensitivity)
Checks whether two filenames are equal, optionally normalizing and providing control over the case-sensitivity.
boolean
FilenameUtils.wildcardMatch(String filename, String wildcardMatcher, IOCase caseSensitivity)
Checks a filename to see if it matches the specified wildcard matcher allowing control over case-sensitivity.

Methods with return type org.apache.commons.io.IOCase

IOCase
IOCase.forName(String name)
Factory method to create an IOCase from a name.

Uses in package org.apache.commons.io.filefilter

Constructors with parameter type org.apache.commons.io.IOCase

NameFileFilter.NameFileFilter(List names, IOCase caseSensitivity)
Constructs a new name file filter for a list of names specifying case-sensitivity.
NameFileFilter.NameFileFilter(String name, IOCase caseSensitivity)
Construct a new name file filter specifying case-sensitivity.
NameFileFilter.NameFileFilter(String[] names, IOCase caseSensitivity)
Constructs a new name file filter for an array of names specifying case-sensitivity.
WildcardFileFilter.WildcardFileFilter(List wildcards, IOCase caseSensitivity)
Construct a new wildcard filter for a list of wildcards specifying case-sensitivity.
WildcardFileFilter.WildcardFileFilter(String wildcard, IOCase caseSensitivity)
Construct a new wildcard filter for a single wildcard specifying case-sensitivity.
WildcardFileFilter.WildcardFileFilter(String[] wildcards, IOCase caseSensitivity)
Construct a new wildcard filter for an array of wildcards specifying case-sensitivity.

Fields of type org.apache.commons.io.IOCase

IOCase
Whether the comparison is case sensitive.
IOCase
Whether the comparison is case sensitive.