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

io.ebean.text.StringParser Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebean.text;

/**
 * Convert a String value into an Object value.
 * 

* Basic interface to support CSV, JSON and XML processing. */ @FunctionalInterface public interface StringParser { /** * Convert a String value into an Object value. */ Object parse(String value); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy