Back to project page OpenHueSdk.
The source code is released under:
Apache License
If you think the Android project OpenHueSdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.t3hh4xx0r.openhuesdk.sdk.bulb; public enum StateCodes { BRIGHTNESS("bri"), ALERT("alert"), ON("on"), COLOR("hue"), SATURATION( "sat");/*from w w w. j a va 2s . co m*/ public String getValue() { return value; } String value; private StateCodes(String value) { this.value = value; } }