mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
Just always use our own StringParser lambda function instead for parsing date, time and dateTime types.
16 lines
295 B
Java
16 lines
295 B
Java
package io.ebean.text;
|
|
|
|
/**
|
|
* Convert a String value into an Object value.
|
|
* <p>
|
|
* 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);
|
|
}
|