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

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

Go to download

WicketJQuery by Stefan Lindner has been renamed to jWicket, mavenized, and migrated to WicketStuff. This Wicketstuff version supercedes the original version which was available at http://subversion.visionet.de/project/WicketJQuery/wiki

There is a newer version: 9.7.0
Show newest version
package org.wicketstuff.jwicket;

public enum JQuerySpeed {

	SLOW("slow"),
	NORMAL("normal"),
	FAST("fast");


	private final String name;

	private JQuerySpeed(final String speed) {
		this.name = speed;
	}

	public String getSpeed() {
		return name;
	}

	public String toString() {
		return getSpeed();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy