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