import { JavaClass, BasicOrJavaType } from "java-bridge"; import { Integer as java_lang_Integer } from "./../lang/Integer"; import { Consumer as java_util_function_Consumer } from "./function/Consumer"; import { IntConsumer as java_util_function_IntConsumer } from "./function/IntConsumer"; import { Spliterator as java_util_Spliterator } from "./Spliterator"; import { Spliterator$OfPrimitive as java_util_Spliterator$OfPrimitive } from "./Spliterator$OfPrimitive"; import { Comparator as java_util_Comparator } from "./Comparator"; /** * This class just defines types, you should import Spliterator$OfInt instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class Spliterator$OfIntClass extends JavaClass { /** * Original type: 'int' */ static readonly ORDERED: java_lang_Integer | number; /** * Original type: 'int' */ static readonly DISTINCT: java_lang_Integer | number; /** * Original type: 'int' */ static readonly SORTED: java_lang_Integer | number; /** * Original type: 'int' */ static readonly SIZED: java_lang_Integer | number; /** * Original type: 'int' */ static readonly NONNULL: java_lang_Integer | number; /** * Original type: 'int' */ static readonly IMMUTABLE: java_lang_Integer | number; /** * Original type: 'int' */ static readonly CONCURRENT: java_lang_Integer | number; /** * Original type: 'int' */ static readonly SUBSIZED: java_lang_Integer | number; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'boolean' */ tryAdvance(var0: java_util_function_Consumer | null): Promise; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'boolean' */ tryAdvanceSync(var0: java_util_function_Consumer | null): boolean; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'boolean' */ tryAdvance(var0: java_util_function_IntConsumer | null): Promise; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'boolean' */ tryAdvanceSync(var0: java_util_function_IntConsumer | null): boolean; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ tryAdvance(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'boolean' */ tryAdvanceSync(var0: BasicOrJavaType | null): boolean; /** * @return original return type: 'java.util.Spliterator' */ trySplit(): Promise; /** * @return original return type: 'java.util.Spliterator' */ trySplitSync(): java_util_Spliterator | null; /** * @return original return type: 'java.util.Spliterator$OfPrimitive' */ trySplit(): Promise; /** * @return original return type: 'java.util.Spliterator$OfPrimitive' */ trySplitSync(): java_util_Spliterator$OfPrimitive | null; /** * @return original return type: 'java.util.Spliterator$OfInt' */ trySplit(): Promise; /** * @return original return type: 'java.util.Spliterator$OfInt' */ trySplitSync(): Spliterator$OfInt | null; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'void' */ forEachRemaining(var0: java_util_function_Consumer | null): Promise; /** * @param var0 original type: 'java.util.function.Consumer' * @return original return type: 'void' */ forEachRemainingSync(var0: java_util_function_Consumer | null): void; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ forEachRemaining(var0: BasicOrJavaType | null): Promise; /** * @param var0 original type: 'java.lang.Object' * @return original return type: 'void' */ forEachRemainingSync(var0: BasicOrJavaType | null): void; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'void' */ forEachRemaining(var0: java_util_function_IntConsumer | null): Promise; /** * @param var0 original type: 'java.util.function.IntConsumer' * @return original return type: 'void' */ forEachRemainingSync(var0: java_util_function_IntConsumer | null): void; /** * @return original return type: 'long' */ estimateSize(): Promise; /** * @return original return type: 'long' */ estimateSizeSync(): number; /** * @return original return type: 'long' */ getExactSizeIfKnown(): Promise; /** * @return original return type: 'long' */ getExactSizeIfKnownSync(): number; /** * @return original return type: 'int' */ characteristics(): Promise; /** * @return original return type: 'int' */ characteristicsSync(): number; /** * @param var0 original type: 'int' * @return original return type: 'boolean' */ hasCharacteristics(var0: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @return original return type: 'boolean' */ hasCharacteristicsSync(var0: java_lang_Integer | number): boolean; /** * @return original return type: 'java.util.Comparator' */ getComparator(): Promise; /** * @return original return type: 'java.util.Comparator' */ getComparatorSync(): java_util_Comparator | null; } declare const Spliterator$OfInt_base: typeof Spliterator$OfIntClass; /** * Class java.util.Spliterator$OfInt. * * This actually imports the java class for further use. * The class Spliterator$OfIntClass 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 Spliterator$OfInt extends Spliterator$OfInt_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default Spliterator$OfInt; //# sourceMappingURL=Spliterator$OfInt.d.ts.map