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

io.github.simple4tests.webdriver.utils.Yml Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
package io.github.simple4tests.webdriver.utils;

import org.yaml.snakeyaml.Yaml;

public class Yml {

    public static  T loadAs(String ressourceFilePath, Class type) {
        return new Yaml().loadAs(
                Thread.currentThread().getContextClassLoader().getResourceAsStream(ressourceFilePath),
                type);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy