import { JavaClass } from "java-bridge"; import { Integer as java_lang_Integer } from "./Integer"; import { IntStream as java_util_stream_IntStream } from "./../util/stream/IntStream"; /** * This class just defines types, you should import CharSequence instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class CharSequenceClass extends JavaClass { /** * @return original return type: 'java.lang.String' */ toString(): Promise; /** * @return original return type: 'java.lang.String' */ toStringSync(): string; /** * @return original return type: 'int' */ length(): Promise; /** * @return original return type: 'int' */ lengthSync(): number; /** * @param var0 original type: 'int' * @return original return type: 'char' */ charAt(var0: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @return original return type: 'char' */ charAtSync(var0: java_lang_Integer | number): string | null; /** * @param var0 original type: 'int' * @param var1 original type: 'int' * @return original return type: 'java.lang.CharSequence' */ subSequence(var0: java_lang_Integer | number, var1: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @param var1 original type: 'int' * @return original return type: 'java.lang.CharSequence' */ subSequenceSync(var0: java_lang_Integer | number, var1: java_lang_Integer | number): CharSequence | null; /** * @return original return type: 'java.util.stream.IntStream' */ chars(): Promise; /** * @return original return type: 'java.util.stream.IntStream' */ charsSync(): java_util_stream_IntStream | null; /** * @return original return type: 'java.util.stream.IntStream' */ codePoints(): Promise; /** * @return original return type: 'java.util.stream.IntStream' */ codePointsSync(): java_util_stream_IntStream | null; } declare const CharSequence_base: typeof CharSequenceClass; /** * Class java.lang.CharSequence. * * This actually imports the java class for further use. * The class CharSequenceClass only defines types, this is the class you should actually import. * Please note that this statement imports the underlying java class at runtime, which may take a while. * This was generated by java-bridge. * You should probably not edit this. */ export declare class CharSequence extends CharSequence_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default CharSequence; //# sourceMappingURL=CharSequence.d.ts.map