mirror of
https://github.com/plexusorg/Plex.git
synced 2025-06-30 15:26:41 +00:00
10 lines
180 B
Java
10 lines
180 B
Java
package dev.plex.toml;
|
|
|
|
interface ValueWriter {
|
|
boolean canWrite(Object value);
|
|
|
|
void write(Object value, dev.plex.toml.WriterContext context);
|
|
|
|
boolean isPrimitiveType();
|
|
}
|