Back to project page Visu.
The source code is released under:
Apache License
If you think the Android project Visu 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.ufavaloro.android.visu.study; /* www . j a v a 2s . c o m*/ public enum StudyMessage { CONFIGURATION_OK(1); private final int value; private StudyMessage(int value){ this.value=value; } public static StudyMessage values(int what) { switch(what){ case 1: return CONFIGURATION_OK; default: return CONFIGURATION_OK; } } public int getValue(){return value;} }