import { JavaClass } from "java-bridge"; import { Integer as java_lang_Integer } from "./../../lang/Integer"; /** * This class just defines types, you should import IntPredicate instead of this. * This was generated by java-bridge. * You should probably not edit this. */ export declare class IntPredicateClass extends JavaClass { /** * @return original return type: 'java.util.function.IntPredicate' */ negate(): Promise; /** * @return original return type: 'java.util.function.IntPredicate' */ negateSync(): IntPredicate | null; /** * @param var0 original type: 'int' * @return original return type: 'boolean' */ test(var0: java_lang_Integer | number): Promise; /** * @param var0 original type: 'int' * @return original return type: 'boolean' */ testSync(var0: java_lang_Integer | number): boolean; /** * @param var0 original type: 'java.util.function.IntPredicate' * @return original return type: 'java.util.function.IntPredicate' */ and(var0: IntPredicateClass | null): Promise; /** * @param var0 original type: 'java.util.function.IntPredicate' * @return original return type: 'java.util.function.IntPredicate' */ andSync(var0: IntPredicateClass | null): IntPredicate | null; /** * @param var0 original type: 'java.util.function.IntPredicate' * @return original return type: 'java.util.function.IntPredicate' */ or(var0: IntPredicateClass | null): Promise; /** * @param var0 original type: 'java.util.function.IntPredicate' * @return original return type: 'java.util.function.IntPredicate' */ orSync(var0: IntPredicateClass | null): IntPredicate | null; } declare const IntPredicate_base: typeof IntPredicateClass; /** * Class java.util.function.IntPredicate. * * This actually imports the java class for further use. * The class IntPredicateClass 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 IntPredicate extends IntPredicate_base { /** * Private constructor to prevent instantiation * as this is either an abstract class or an interface */ private constructor(); } export default IntPredicate; //# sourceMappingURL=IntPredicate.d.ts.map