@@ -150,6 +150,9 @@ export declare class JavaClass extends JavaObject {
150150 * Does not overwrite any existing instanceof operator.
151151 * This uses the native java instanceof operator.
152152 *
153+ * This method's name is not affected by the {@link JavaConfig#syncSuffix}
154+ * and {@link JavaConfig#asyncSuffix} options.
155+ *
153156 * ## Example
154157 * ```ts
155158 * import { importClass } from 'java-bridge';
@@ -190,6 +193,9 @@ export declare class JavaClass extends JavaObject {
190193 * Java default toString method.
191194 * Sync call.
192195 *
196+ * This method's name is not affected by the {@link JavaConfig#syncSuffix}
197+ * and {@link JavaConfig#asyncSuffix} options.
198+ *
193199 * @returns this as a string
194200 */
195201 public toString ( ) : string ;
@@ -198,6 +204,9 @@ export declare class JavaClass extends JavaObject {
198204 * Java default toString method.
199205 * Sync call.
200206 *
207+ * This method's name is not affected by the {@link JavaConfig#syncSuffix}
208+ * and {@link JavaConfig#asyncSuffix} options.
209+ *
201210 * @deprecated use {@link toString} instead
202211 * @returns this as a string
203212 */
@@ -207,6 +216,9 @@ export declare class JavaClass extends JavaObject {
207216 * Java default toString method.
208217 * Async call.
209218 *
219+ * This method's name is not affected by the {@link JavaConfig#syncSuffix}
220+ * and {@link JavaConfig#asyncSuffix} options.
221+ *
210222 * @since 2.4.0
211223 * @returns this as a string
212224 */
@@ -251,6 +263,9 @@ export declare class UnknownJavaClass extends JavaClass {
251263 * Create a new java class instance.
252264 * Async version.
253265 *
266+ * This method's name is not affected by the {@link JavaConfig#syncSuffix}
267+ * and {@link JavaConfig#asyncSuffix} options.
268+ *
254269 * @template T the type of this class as a new instance of this class will be returned
255270 * @param args the arguments to create the instance
256271 * @return the java_instance_proxy instance
0 commit comments