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

com.blazebit.text.SerializableFormat Maven / Gradle / Ivy

There is a newer version: 1.6.11
Show newest version
/*
 * Copyright 2011 Blazebit
 */
package com.blazebit.text;

import java.io.Serializable;
import java.text.ParseException;

/**
 * @author Christian Beikov
 */
public interface SerializableFormat {

    public String format(T object, ParserContext context);

    public T parse(String value, ParserContext context) throws ParseException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy