com.sksamuel.jqm4gwt.Orientation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jqm4gwt-standalone Show documentation
Show all versions of jqm4gwt-standalone Show documentation
jqm4gwt bundled with all of its dependencies
The newest version!
package com.sksamuel.jqm4gwt;
public enum Orientation {
HORIZONTAL("horizontal"), VERTICAL("vertical");
private final String jqmValue;
private Orientation(String value) {
this.jqmValue = value;
}
/**
* Returns the string value that JQM expects
*/
public String getJqmValue() {
return jqmValue;
}
}