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

com.avaje.ebean.text.StringParser Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.text;

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

* Basic interface to support CSV, JSON and XML processing. *

* * @author rbygrave */ public interface StringParser { /** * Convert a String value into an Object value. */ Object parse(String value); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy