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

com.vikingbrain.nmt.operations.parameters.DisplayMode Maven / Gradle / Ivy

Go to download

A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices

There is a newer version: 1.2.1
Show newest version
package com.vikingbrain.nmt.operations.parameters;

/**
 * Display mode, show(Or pass empty parameter also accepted) or hide (background mode)
 * @author vikingBrain
 *
 */
public enum DisplayMode {

	/**
	 * It will show the playback UI.
	 */
	SHOW {
		public String getParamValue() {
			return "show"; //Or pass empty parameter also accepted
		}
	},

	/**
	 * It will hide the playback behind current display.
	 */
	HIDE {
		public String getParamValue() {
			return "hide";
		}
	};

//	/**
//	 * It will only show window marquee.
//	 */
//	MARQUEE {
//		public String getParamValue() {
//			return "marquee";
//		}
//	};

		
	/**
	 * Abstract method get the description.
	 * @return description of the error
	 */
	public abstract String getParamValue();


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy