All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.vproxy.pni.AbstractNativeObject Maven / Gradle / Ivy

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();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy