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

com.sksamuel.jqm4gwt.Orientation Maven / Gradle / Ivy

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;
	}     
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy