![JAR search and dependency download from the Maven repository](/logo.png)
org.alcibiade.chess.persistence.PositionMarshaller Maven / Gradle / Ivy
package org.alcibiade.chess.persistence;
import org.alcibiade.chess.model.ChessPosition;
/**
* Persist position without history.
*
* @author Yannick Kirschhoffer
*/
public interface PositionMarshaller {
String convertPositionToString(ChessPosition position);
ChessPosition convertStringToPosition(String text);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy