Package org.languagetool.tools
Class InterruptibleCharSequence
- java.lang.Object
-
- org.languagetool.tools.InterruptibleCharSequence
-
- All Implemented Interfaces:
CharSequence
public class InterruptibleCharSequence extends Object implements CharSequence
CharSequence that noticed thread interrupts -- as might be necessary to recover from a loose regex on unexpected challenging input.- Author:
- gojomo
-
-
Constructor Summary
Constructors Constructor Description InterruptibleCharSequence(CharSequence inner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char
charAt(int index)
int
length()
CharSequence
subSequence(int start, int end)
@NotNull String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.CharSequence
chars, codePoints
-
-
-
-
Constructor Detail
-
InterruptibleCharSequence
public InterruptibleCharSequence(CharSequence inner)
-
-
Method Detail
-
charAt
public char charAt(int index)
- Specified by:
charAt
in interfaceCharSequence
-
length
public int length()
- Specified by:
length
in interfaceCharSequence
-
subSequence
public CharSequence subSequence(int start, int end)
- Specified by:
subSequence
in interfaceCharSequence
-
toString
@NotNull public @NotNull String toString()
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classObject
-
-