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

io.github.palexdev.virtualizedfx.Resources Maven / Gradle / Ivy

package io.github.palexdev.virtualizedfx;

import java.net.URL;

public class Resources {

	//================================================================================
	// Constructors
	//================================================================================
	private Resources() {}

	//================================================================================
	// Static Methods
	//================================================================================
	public static URL getResource(String name) {
		return Resources.class.getResource(name);
	}

	public static String loadResource(String name) {
		return getResource(name).toExternalForm();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy