org.wicketstuff.jwicket.ui.effect.EffectHorVerDirection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicketstuff-jwicket-ui-effects Show documentation
Show all versions of wicketstuff-jwicket-ui-effects Show documentation
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
package org.wicketstuff.jwicket.ui.effect;
public enum EffectHorVerDirection {
DEFAULT(null),
HORIZONTAL("horizontal"),
VERTICAL("vertical");
private final String direction;
private EffectHorVerDirection(final String direction) {
this.direction = direction;
}
public String getDirection() {
return direction;
}
public String toString() {
return direction==null?"default":direction;
}
}