org.mentalog.AsciiEncodable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of menta-log Show documentation
Show all versions of menta-log Show documentation
A log library that embraces the kiss principle.
package org.mentalog;
import java.nio.ByteBuffer;
public interface AsciiEncodable {
public void toAscii(ByteBuffer bb);
public void toAscii(StringBuilder sb);
}