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

com.moandjiezana.toml.ValueWriter Maven / Gradle / Ivy

The newest version!
package com.moandjiezana.toml;

interface ValueWriter {
  boolean canWrite(Object value);

  void write(Object value, WriterContext context);

  boolean isPrimitiveType();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy