Java org.apache.commons.io IOCase fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.io IOCase fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.io IOCase.

The text is from its open source code.

Field

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

Method

booleancheckEndsWith(String str, String end)
Checks if one string ends with another using the case-sensitivity rule.
booleancheckEquals(String str1, String str2)
Compares two strings using the case-sensitivity rule.
intcheckIndexOf(String str, int strStartIndex, String search)
Checks if one string contains another starting at a specific index using the case-sensitivity rule.
booleancheckRegionMatches(String str, int strStartIndex, String search)
Checks if one string contains another at a specific index using the case-sensitivity rule.
booleanisCaseSensitive()
Does the object represent case sensitive comparison.