io.vproxy.pni.exec.ast.AstAnnoValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-exec-jdk22 Show documentation
Show all versions of pni-exec-jdk22 Show documentation
panama native interface pni-exec-jdk22
The newest version!
package io.vproxy.pni.exec.ast;
public class AstAnnoValue {
public String name;
public Object value;
public AstAnnoValue(String name, Object value) {
this.name = name;
this.value = value;
}
public void toString(StringBuilder sb) {
sb.append(name).append("=").append(value);
}
}