Back to project page json_resume.
The source code is released under:
/* * Copyright (c) 2015 Hunter Davis <hunter@hunterdavis.com> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided th...
If you think the Android project json_resume 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.hunterdavis.jsonresumeviewer; /*from www . j a v a 2 s. c o m*/ /** * resume sections for the tab adapter */ public enum ResumeSections { BASICS, AWARDS, EDUCATION, INTERESTS, LANGUAGES, PUBLICATIONS, REFERENCES, SKILLS, VOLUNTEER, WORK, PROFILES; private static ResumeSections[] allValues = values(); public static ResumeSections fromOrdinal(int n) {return allValues[n];} }