io.vproxy.pni.AbstractNativeObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-api-jdk22 Show documentation
Show all versions of pni-api-jdk22 Show documentation
panama native interface pni-api-jdk22
The newest version!
package io.vproxy.pni;
import java.util.HashSet;
public abstract class AbstractNativeObject implements NativeObject {
@Override
public String toString() {
var sb = new StringBuilder();
toString(sb, 0, new HashSet<>(), false);
return sb.toString();
}
}