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

de.jwic.controls.mobile.IconPos Maven / Gradle / Ivy

There is a newer version: 5.3.43
Show newest version
package de.jwic.controls.mobile;

/**
 * 
 * Enum for possible icon positions
 * 
 * @author vedad
 *
 */
public enum IconPos {

	LEFT("left"), RIGHT("right"), TOP("top"), BOTTOM("bottom"), NONE("none"), NOTEXT("notext");

	private String code;

	private IconPos(String c) {
		code = c;
	}

	public String getCode() {
		return code;
	}

	@Override
	public String toString() {
		return getCode();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy