Uses of Class
org.apache.commons.io.IOCase
-
Packages that use IOCase Package Description org.apache.commons.io Provides classes for working with streams, readers, writers and files.org.apache.commons.io.comparator Provides variousComparatorimplementations forFiles andPath.org.apache.commons.io.filefilter org.apache.commons.io.monitor Provides a component for monitoring file system events (directory and file create, update and delete events). -
-
Uses of IOCase in org.apache.commons.io
Methods in org.apache.commons.io that return IOCase Modifier and Type Method Description static IOCaseIOCase. forName(java.lang.String name)Looks up an IOCase by name.static IOCaseIOCase. value(IOCase value, IOCase defaultValue)Returns the given value if not-null, the defaultValue if null.static IOCaseIOCase. valueOf(java.lang.String name)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.Methods in org.apache.commons.io with parameters of type IOCase Modifier and Type Method Description static booleanFilenameUtils. equals(java.lang.String fileName1, java.lang.String fileName2, boolean normalize, IOCase ioCase)Checks whether two file names are equal, optionally normalizing and providing control over the case-sensitivity.static booleanIOCase. isCaseSensitive(IOCase ioCase)Tests for cases sensitivity in a null-safe manner.static IOCaseIOCase. value(IOCase value, IOCase defaultValue)Returns the given value if not-null, the defaultValue if null.static booleanFilenameUtils. wildcardMatch(java.lang.String fileName, java.lang.String wildcardMatcher, IOCase ioCase)Checks a fileName to see if it matches the specified wildcard matcher allowing control over case-sensitivity. -
Uses of IOCase in org.apache.commons.io.comparator
Constructors in org.apache.commons.io.comparator with parameters of type IOCase Constructor Description ExtensionFileComparator(IOCase ioCase)Constructs a file extension comparator instance with the specified case-sensitivity.NameFileComparator(IOCase ioCase)Constructs a file name comparator instance with the specified case-sensitivity.PathFileComparator(IOCase ioCase)Constructs a file path comparator instance with the specified case-sensitivity. -
Uses of IOCase in org.apache.commons.io.filefilter
Methods in org.apache.commons.io.filefilter with parameters of type IOCase Modifier and Type Method Description static IOFileFilterFileFilterUtils. nameFileFilter(java.lang.String name, IOCase ioCase)Returns a filter that returns true if the file name matches the specified text.static IOFileFilterFileFilterUtils. prefixFileFilter(java.lang.String prefix, IOCase ioCase)Returns a filter that returns true if the file name starts with the specified text.WildcardFileFilter.BuilderWildcardFileFilter.Builder. setIoCase(IOCase ioCase)Sets how to handle case sensitivity, null means case-sensitive.static IOFileFilterFileFilterUtils. suffixFileFilter(java.lang.String suffix, IOCase ioCase)Returns a filter that returns true if the file name ends with the specified text.Constructors in org.apache.commons.io.filefilter with parameters of type IOCase Constructor Description NameFileFilter(java.lang.String[] names, IOCase ioCase)Constructs a new name file filter for an array of names specifying case-sensitivity.NameFileFilter(java.lang.String name, IOCase ioCase)Constructs a new name file filter specifying case-sensitivity.NameFileFilter(java.util.List<java.lang.String> names, IOCase ioCase)Constructs a new name file filter for a list of names specifying case-sensitivity.PrefixFileFilter(java.lang.String[] prefixes, IOCase ioCase)Constructs a new Prefix file filter for any of an array of prefixes specifying case-sensitivity.PrefixFileFilter(java.lang.String prefix, IOCase ioCase)Constructs a new Prefix file filter for a single prefix specifying case-sensitivity.PrefixFileFilter(java.util.List<java.lang.String> prefixes, IOCase ioCase)Constructs a new Prefix file filter for a list of prefixes specifying case-sensitivity.RegexFileFilter(java.lang.String pattern, IOCase ioCase)Constructs a new regular expression filter with the specified flags case sensitivity.SuffixFileFilter(java.lang.String[] suffixes, IOCase ioCase)Constructs a new Suffix file filter for an array of suffixes specifying case-sensitivity.SuffixFileFilter(java.lang.String suffix, IOCase ioCase)Constructs a new Suffix file filter for a single extension specifying case-sensitivity.SuffixFileFilter(java.util.List<java.lang.String> suffixes, IOCase ioCase)Constructs a new Suffix file filter for a list of suffixes specifying case-sensitivity.WildcardFileFilter(java.lang.String[] wildcards, IOCase ioCase)Deprecated.WildcardFileFilter(java.lang.String wildcard, IOCase ioCase)Deprecated.WildcardFileFilter(java.util.List<java.lang.String> wildcards, IOCase ioCase)Deprecated. -
Uses of IOCase in org.apache.commons.io.monitor
Methods in org.apache.commons.io.monitor with parameters of type IOCase Modifier and Type Method Description FileAlterationObserver.BuilderFileAlterationObserver.Builder. setIOCase(IOCase ioCase)Sets what case sensitivity to use comparing file names, null means system sensitive.Constructors in org.apache.commons.io.monitor with parameters of type IOCase Constructor Description FileAlterationObserver(java.io.File directory, java.io.FileFilter fileFilter, IOCase ioCase)Deprecated.FileAlterationObserver(java.lang.String directoryName, java.io.FileFilter fileFilter, IOCase ioCase)Deprecated.FileAlterationObserver(FileEntry rootEntry, java.io.FileFilter fileFilter, IOCase ioCase)Constructs an observer for the specified directory, file filter and file comparator.
-