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

be.quodlibet.boxable.VerticalAlignment Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
package be.quodlibet.boxable;

public enum VerticalAlignment {
	TOP, MIDDLE, BOTTOM;
	
	public static VerticalAlignment get(final String key) {
		switch (key == null ? "top" : key.toLowerCase().trim()) {
		case "top":
			return TOP;
		case "middle":
			return MIDDLE;
		case "bottom":
			return BOTTOM;
			default:
				return TOP;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy