[LIB-9] Set of entities for PGN parsing and formatting
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / pgn / format / PGNFormat.java
1 /*
2  * Copyright (c) 2018-2020. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.pgn.format;
18
19 import java.util.Date;
20 import java.util.List;
21 import java.util.Map;
22
23 import org.hedgecode.chess.pgn.entity.Move;
24 import org.hedgecode.chess.pgn.entity.Tag;
25
26 /**
27  * PGNFormat
28  *
29  * @author Dmitry Samoshin aka gotty
30  */
31 public interface PGNFormat<Format extends MovesFormat> {
32
33     String format();
34
35     void addTag(Tag tag, String value);
36
37     void addTags(Map<String, String> tags);
38
39     String getTag(Tag tag);
40
41     void addMoves(String moves);
42
43     void addMoves(Move[] moves);
44
45     void addMoves(List<Move> moves);
46
47     Format movesFormat();
48
49     String formatDate(Date date);
50
51     String formatTime(Date time);
52
53 }