/** * ============================================================================= * * ORCID (R) Open Source * http://orcid.org * * Copyright (c) 2012-2014 ORCID, Inc. * Licensed under an MIT-Style License (MIT) * http://orcid.org/open-source-license * * This copyright and license information (including a link to the full license) * shall be included in its entirety in all copies or substantial portion of * the software. * * ============================================================================= */ package org.orcid.jaxb.model.common_v2; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; import java.io.Serializable; /** * @author Declan Newman (declan) Date: 07/08/2012 */ @XmlType(name = "contributorRole") @XmlEnum public enum ContributorRole implements Serializable { @XmlEnumValue("author") AUTHOR("author"), @XmlEnumValue("assignee") ASSIGNEE("assignee"), @XmlEnumValue("editor") EDITOR("editor"), @XmlEnumValue("chair-or-translator") CHAIR_OR_TRANSLATOR("chair_or_translator"), @XmlEnumValue("co-investigator") CO_INVESTIGATOR("co_investigator"), @XmlEnumValue("co-inventor") CO_INVENTOR("co_inventor"), @XmlEnumValue("graduate-student") GRADUATE_STUDENT("graduate_student"), @XmlEnumValue("other-inventor") OTHER_INVENTOR("other_inventor"), @XmlEnumValue("principal-investigator") PRINCIPAL_INVESTIGATOR("principal_investigator"), @XmlEnumValue("postdoctoral-researcher") POSTDOCTORAL_RESEARCHER("postdoctoral_researcher"), @XmlEnumValue("support-staff") SUPPORT_STAFF("support_staff"); private final String value; ContributorRole(String v) { value = v; } public String value() { return value; } public static ContributorRole fromValue(String v) { for (ContributorRole c : ContributorRole.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }