Enum EmploymentPositionTypeEnum

  • All Implemented Interfaces:
    Serializable, Comparable<EmploymentPositionTypeEnum>

    public enum EmploymentPositionTypeEnum
    extends Enum<EmploymentPositionTypeEnum>

    Java class for employment-position-type-enum.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="employment-position-type-enum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="T01V01"/>
         <enumeration value="T01V01"/>
         <enumeration value="T01V02"/>
         <enumeration value="T02V01"/>
         <enumeration value="T02V02"/>
         <enumeration value="T03V01"/>
         <enumeration value="T03V02"/>
         <enumeration value="T03V03"/>
         <enumeration value="T03V04"/>
         <enumeration value="T03V05"/>
         <enumeration value="T03V06"/>
         <enumeration value="T04V00"/>
         <enumeration value="T04V01"/>
         <enumeration value="T04V02"/>
         <enumeration value="T04V03"/>
         <enumeration value="T04V04"/>
         <enumeration value="T04V05"/>
         <enumeration value="T04V06"/>
         <enumeration value="T04V07"/>
         <enumeration value="T04V08"/>
         <enumeration value="T04V09"/>
         <enumeration value="T04V10"/>
         <enumeration value="T04V11"/>
         <enumeration value="T04V12"/>
         <enumeration value="T04V13"/>
         <enumeration value="T04V14"/>
         <enumeration value="T04V15"/>
         <enumeration value="T04V16"/>
         <enumeration value="T04V17"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      T_01_V_01
      PT: Investigação / EN: Research
      T_01_V_02
      PT: Gestão de Ciência e Tecnologia / EN: Science and Technology Management
      T_02_V_01
      PT: Docente Universitário / EN: University Teacher
      T_02_V_02
      PT: Docente Ensino Superior Politécnico / EN: Polytechnic Teacher
      T_03_V_01
      PT: Carreiras Gerais / EN: Carreiras Gerais
      T_03_V_02
      PT: Carreiras Especiais / EN: Carreiras Especiais
      T_03_V_03
      PT: Carreiras / Categorias Subsistentes / EN: Carreiras / Categorias Subsistentes
      T_03_V_04
      PT: Pessoal Docente - Carreiras e Categorias não revistas / EN: Pessoal Docente - Carreiras e Categorias não revistas
      T_03_V_05
      PT: Pessoal de Informática / EN: Pessoal de Informática
      T_03_V_06
      PT: Pessoal da Saúde / EN: Pessoal da Saúde
      T_04_V_00
      PT: Outros (Ex.: Nomeações) / EN: Others (Ex: Appointments)
      T_04_V_01
      PT: Reitor / EN: Rector
      T_04_V_02
      PT: Pró-Reitor / EN: Pro-Rector
      T_04_V_03
      PT: Presidente / EN: President
      T_04_V_04
      PT: Pró-presidente / EN: Pro-president
      T_04_V_05
      PT: Vice-Reitor / EN: Vice-Rector
      T_04_V_06
      PT: Vice-Presidente / EN: Vice-President
      T_04_V_07
      PT: Administrador de Instituição de Ensino Superior / EN: Higher Education Institution Administrator
      T_04_V_08
      PT: Director de Unidade Orgânica / EN: Organic Unit Director
      T_04_V_09
      PT: Subdirector de Unidade Orgânica / EN: Organic Unit Sub-director
      T_04_V_10
      PT: Presidente de Unidade Orgânica / EN: Organic Unit President
      T_04_V_11
      PT: Presidente do Conselho Científico / EN: President of the Scientific Council
      T_04_V_12
      PT: Presidente do Conselho Técnico-Científico / EN: President of the Scientific-Technical Council
      T_04_V_13
      PT: Presidente do Conselho Pedagógico / EN: President of the Pedagogic Council
      T_04_V_14
      PT: Vice-Presidente da Unidade Orgânica / EN: Organic Unit Vice-President
      T_04_V_15
      PT: Dirigente de laboratório, instituto, museu, centro ou observatório / EN: Manager of Laboratory, Institute, Museum, Centre or Observatory
      T_04_V_16
      PT: Presidente do Conselho Escolar / EN: President of the School Board
      T_04_V_17
      PT: Vice-Presidente do Conselho Escolar / EN: Vice-President of the School Board
    • Method Detail

      • values

        public static EmploymentPositionTypeEnum[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (EmploymentPositionTypeEnum c : EmploymentPositionTypeEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static EmploymentPositionTypeEnum valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • value

        public String value()