Java org.apache.commons.lang3 CharSequenceUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3 CharSequenceUtils fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Subclass

org.apache.commons.lang3.CharSequenceUtils has subclasses.
Click this link to see all its subclasses.

Method

intindexOf(final CharSequence cs, final int searchChar, int start)

Finds the first index in the CharSequence that matches the specified character.

intindexOf(final CharSequence cs, final CharSequence searchChar, final int start)
Used by the indexOf(CharSequence methods) as a green implementation of indexOf.
intlastIndexOf(final CharSequence cs, final int searchChar, int start)

Finds the last index in the CharSequence that matches the specified character.

intlastIndexOf(final CharSequence cs, final CharSequence searchChar, final int start)
Used by the lastIndexOf(CharSequence methods) as a green implementation of lastIndexOf
booleanregionMatches(final CharSequence cs, final boolean ignoreCase, final int thisStart, final CharSequence substring, final int start, final int length)
Green implementation of regionMatches.
char[]toCharArray(final CharSequence cs)
Green implementation of toCharArray.