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

com.atlassian.bamboo.specs.util.CustomYamlers Maven / Gradle / Ivy

There is a newer version: 10.1.0
Show newest version
package com.atlassian.bamboo.specs.util;

import org.yaml.snakeyaml.constructor.Construct;
import org.yaml.snakeyaml.representer.Represent;

public final class CustomYamlers {
    public static final CustomYamler[] YAMLERS = {
            DurationYamler.INSTANCE
    };

    private CustomYamlers() {
    }

    public interface CustomYamler {
        Construct getConstructor();

        Class getYamledClass();

        Represent getRepresenter();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy