com.vikingbrain.nmt.operations.parameters.DisplayMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thedavidbox-client4j Show documentation
Show all versions of thedavidbox-client4j Show documentation
A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices
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();
}