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