/** * MIT License * * Copyright (c) 2022 JabDoesThings * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * */ /** @noSelfInFile */ /// declare module '@shughesuk/pipewrench' { export namespace zombie.core.Collections { /** * @customConstructor NonBlockingHashMap.new * @ * [CLASS] zombie.core.Collections.NonBlockingHashMap extends java.util.AbstractMap */ export class NonBlockingHashMap { /** * Constructors: * - (Empty Constructor) * - (int arg0) */ constructor(arg0?: number); /** * Method Parameters: * - (Empty): void */ clear(): void; /** * Method Parameters: * - (Empty): any */ clone(): any; /** * Method Parameters: * - (Object arg0, BiFunction arg1): V */ compute(arg0: any, arg1: java.util._function_.BiFunction): any; /** * Method Parameters: * - (Object arg0, Function arg1): V */ computeIfAbsent(arg0: any, arg1: java.util._function_.Function): any; /** * Method Parameters: * - (Object arg0, BiFunction arg1): V */ computeIfPresent(arg0: any, arg1: java.util._function_.BiFunction): any; /** * Method Parameters: * - (Object arg0): boolean */ contains(arg0: any): boolean; /** * Method Parameters: * - (Object arg0): boolean */ containsKey(arg0: any): boolean; /** * Method Parameters: * - (Object arg0): boolean */ containsValue(arg0: any): boolean; /** * Method Parameters: * - (Empty): java.util.Enumeration */ elements(): java.util.Enumeration; /** * Method Parameters: * - (Empty): java.util.Set> */ entrySet(): java.util.Set>; /** * Method Parameters: * - (Object arg0): boolean */ equals(arg0: any): boolean; /** * Method Parameters: * - (BiConsumer arg0): void */ forEach(arg0: java.util._function_.BiConsumer): void; /** * Method Parameters: * - (Object arg0): TypeV */ get(arg0: any): any; /** * Method Parameters: * - (Object arg0, Object arg1): V */ getOrDefault(arg0: any, arg1: any): any; /** * Method Parameters: * - (Empty): number */ hashCode(): number; /** * Method Parameters: * - (Empty): boolean */ isEmpty(): boolean; /** * Method Parameters: * - (Empty): java.util.Set */ keySet(): java.util.Set; /** * Method Parameters: * - (Empty): java.util.Enumeration */ keys(): java.util.Enumeration; /** * Method Parameters: * - (Object arg0, Object arg1, BiFunction arg2): V */ merge(arg0: any, arg1: any, arg2: java.util._function_.BiFunction): any; /** * Method Parameters: * - (Empty): void */ print(): void; /** * Method Parameters: * - (Object arg0, Object arg1): TypeV */ put(arg0: any, arg1: any): any; /** * Method Parameters: * - (Map arg0): void */ putAll(arg0: java.util.Map): void; /** * Method Parameters: * - (Object arg0, Object arg1): TypeV */ putIfAbsent(arg0: any, arg1: any): any; /** * Method Parameters: * - (Object arg0): TypeV * - (Object arg0, Object arg1): boolean */ remove(arg0: any, arg1?: any): any; /** * Method Parameters: * - (Object arg0, Object arg1): TypeV * - (Object arg0, Object arg1, Object arg2): boolean */ replace(arg0: any, arg1: any, arg2?: any): any; /** * Method Parameters: * - (BiFunction arg0): void */ replaceAll(arg0: java.util._function_.BiFunction): void; /** * Method Parameters: * - (Empty): number */ reprobes(): number; /** * Method Parameters: * - (Empty): number */ size(): number; /** * Method Parameters: * - (Empty): string */ toString(): string; /** * Method Parameters: * - (Empty): java.util.Collection */ values(): java.util.Collection; } } }