/* * Copyright 2012 Shared Learning Collaborative, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.04.20 at 03:09:04 PM EDT // package org.slc.sli.sample.entities; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for StaffClassificationType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="StaffClassificationType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="Art Therapist"/> * <enumeration value="Athletic Trainer"/> * <enumeration value="Assistant Principal"/> * <enumeration value="Assistant Superintendent"/> * <enumeration value="Certified Interpreter"/> * <enumeration value="Counselor"/> * <enumeration value="High School Counselor"/> * <enumeration value="Instructional Coordinator"/> * <enumeration value="Instructional Aide"/> * <enumeration value="Librarians/Media Specialists"/> * <enumeration value="LEA Administrator"/> * <enumeration value="LEA Specialist"/> * <enumeration value="LEA System Administrator"/> * <enumeration value="LEA Administrative Support Staff"/> * <enumeration value="Librarian"/> * <enumeration value="Principal"/> * <enumeration value="Physical Therapist"/> * <enumeration value="Teacher"/> * <enumeration value="Other"/> * <enumeration value="Superintendent"/> * <enumeration value="School Nurse"/> * <enumeration value="Specialist/Consultant"/> * <enumeration value="School Administrator"/> * <enumeration value="School Administrative Support Staff"/> * <enumeration value="Student Support Services Staff"/> * <enumeration value="School Leader"/> * <enumeration value="School Specialist"/> * <enumeration value="Substitute Teacher"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "StaffClassificationType") @XmlEnum public enum StaffClassificationType { @XmlEnumValue("Art Therapist") ART_THERAPIST("Art Therapist"), @XmlEnumValue("Athletic Trainer") ATHLETIC_TRAINER("Athletic Trainer"), @XmlEnumValue("Assistant Principal") ASSISTANT_PRINCIPAL("Assistant Principal"), @XmlEnumValue("Assistant Superintendent") ASSISTANT_SUPERINTENDENT("Assistant Superintendent"), @XmlEnumValue("Certified Interpreter") CERTIFIED_INTERPRETER("Certified Interpreter"), @XmlEnumValue("Counselor") COUNSELOR("Counselor"), @XmlEnumValue("High School Counselor") HIGH_SCHOOL_COUNSELOR("High School Counselor"), @XmlEnumValue("Instructional Coordinator") INSTRUCTIONAL_COORDINATOR("Instructional Coordinator"), @XmlEnumValue("Instructional Aide") INSTRUCTIONAL_AIDE("Instructional Aide"), @XmlEnumValue("Librarians/Media Specialists") LIBRARIANS_MEDIA_SPECIALISTS("Librarians/Media Specialists"), @XmlEnumValue("LEA Administrator") LEA_ADMINISTRATOR("LEA Administrator"), @XmlEnumValue("LEA Specialist") LEA_SPECIALIST("LEA Specialist"), @XmlEnumValue("LEA System Administrator") LEA_SYSTEM_ADMINISTRATOR("LEA System Administrator"), @XmlEnumValue("LEA Administrative Support Staff") LEA_ADMINISTRATIVE_SUPPORT_STAFF("LEA Administrative Support Staff"), @XmlEnumValue("Librarian") LIBRARIAN("Librarian"), @XmlEnumValue("Principal") PRINCIPAL("Principal"), @XmlEnumValue("Physical Therapist") PHYSICAL_THERAPIST("Physical Therapist"), @XmlEnumValue("Teacher") TEACHER("Teacher"), @XmlEnumValue("Other") OTHER("Other"), @XmlEnumValue("Superintendent") SUPERINTENDENT("Superintendent"), @XmlEnumValue("School Nurse") SCHOOL_NURSE("School Nurse"), @XmlEnumValue("Specialist/Consultant") SPECIALIST_CONSULTANT("Specialist/Consultant"), @XmlEnumValue("School Administrator") SCHOOL_ADMINISTRATOR("School Administrator"), @XmlEnumValue("School Administrative Support Staff") SCHOOL_ADMINISTRATIVE_SUPPORT_STAFF("School Administrative Support Staff"), @XmlEnumValue("Student Support Services Staff") STUDENT_SUPPORT_SERVICES_STAFF("Student Support Services Staff"), @XmlEnumValue("School Leader") SCHOOL_LEADER("School Leader"), @XmlEnumValue("School Specialist") SCHOOL_SPECIALIST("School Specialist"), @XmlEnumValue("Substitute Teacher") SUBSTITUTE_TEACHER("Substitute Teacher"); private final String value; StaffClassificationType(String v) { value = v; } public String value() { return value; } public static StaffClassificationType fromValue(String v) { for (StaffClassificationType c: StaffClassificationType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }