1/**
2 * Copyright (c) 2008, http://www.snakeyaml.org
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 */
16package org.yaml.snakeyaml.parser;
17
18import java.util.Map;
19
20import org.yaml.snakeyaml.DumperOptions.Version;
21
22/**
23 * Store the internal state for directives
24 */
25class VersionTagsTuple {
26    private Version version;
27    private Map<String, String> tags;
28
29    public VersionTagsTuple(Version version, Map<String, String> tags) {
30        this.version = version;
31        this.tags = tags;
32    }
33
34    public Version getVersion() {
35        return version;
36    }
37
38    public Map<String, String> getTags() {
39        return tags;
40    }
41
42    @Override
43    public String toString() {
44        return String.format("VersionTagsTuple<%s, %s>", version, tags);
45    }
46}
47