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 AlertCodes { NONE("none"), SELECT("select"), lSELECT("lselect"); /*w w w .j a v a 2 s .c o m*/ public String getValue() { return value; } String value; private AlertCodes(String value) { this.value = value; } }