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

org.wicketstuff.jwicket.CssPosition Maven / Gradle / Ivy

package org.wicketstuff.jwicket;


public enum CssPosition {

	TOP("top"),
	LEFT("left"),
	RIGHT("right"),
	BOTTOM("bottom");
	
	private final String name;
	
	private CssPosition(final String name) {
		this.name = name;
	}

	public String getName() {
		return this.name;
	}
	
	public String toString() {
		return this.name;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy