import { JavaClass } from "java-bridge"; import { Double as java_lang_Double } from "./../../lang/Double"; /** * This class just defines types, you should import DoubleConsumer instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class DoubleConsumerClass extends JavaClass { /** * @param var0 original type: 'java.util.function.DoubleConsumer' * @return original return type: 'java.util.function.DoubleConsumer' */ andThen(var0: DoubleConsumerClass | null): Promise; /** * @param var0 original type: 'java.util.function.DoubleConsumer' * @return original return type: 'java.util.function.DoubleConsumer' */ andThenSync(var0: DoubleConsumerClass | null): DoubleConsumer | null; /** * @param var0 original type: 'double' * @return original return type: 'void' */ accept(var0: java_lang_Double | number): Promise; /** * @param var0 original type: 'double' * @return original return type: 'void' */ acceptSync(var0: java_lang_Double | number): void; } declare const DoubleConsumer_base: typeof DoubleConsumerClass; /** * Class java.util.function.DoubleConsumer. * * This actually imports the java class for further use. * The class DoubleConsumerClass 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 DoubleConsumer extends DoubleConsumer_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default DoubleConsumer; //# sourceMappingURL=DoubleConsumer.d.ts.map