net.sf.saxon.regex.GeneralUnicodeString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of saxon-he Show documentation
Show all versions of saxon-he Show documentation
An OSGi bundle for Saxon-HE
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2013 Saxonica Limited.
// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
// If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
// This Source Code Form is "Incompatible With Secondary Licenses", as defined by the Mozilla Public License, v. 2.0.
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package net.sf.saxon.regex;
import net.sf.saxon.value.StringValue;
/**
* A Unicode string which, in general, may contain non-BMP characters (that is, codepoints
* outside the range 0-65535)
*/
public final class GeneralUnicodeString extends UnicodeString {
private int[] chars;
private int start;
private int end;
public GeneralUnicodeString(CharSequence in) {
chars = net.sf.saxon.value.StringValue.expand(in);
start = 0;
end = chars.length;
}
GeneralUnicodeString(int[] chars, int start, int end) {
this.chars = chars;
this.start = start;
this.end = end;
}
public UnicodeString substring(int beginIndex, int endIndex) {
if (endIndex > chars.length) {
throw new IndexOutOfBoundsException("endIndex=" + endIndex
+ "; sequence size=" + chars.length);
}
if (beginIndex < 0 || beginIndex > endIndex) {
throw new IndexOutOfBoundsException("beginIndex=" + beginIndex
+ "; endIndex=" + endIndex);
}
return new GeneralUnicodeString(chars, start + beginIndex, start + endIndex);
}
public int charAt(int pos) {
return chars[start + pos];
}
public int indexOf(int search, int pos) {
for (int i=pos; i= (end - start));
}
public String toString() {
int[] c = chars;
if (start != 0) {
c = new int[end - start];
System.arraycopy(chars, start, c, 0, end - start);
}
return StringValue.contract(c, end - start).toString();
}
public CharSequence getCharSequence() {
int[] c = chars;
if (start != 0) {
c = new int[end - start];
System.arraycopy(chars, start, c, 0, end - start);
}
return StringValue.contract(c, end - start);
}
}