Enum ServiceCategoryEnum

  • All Implemented Interfaces:
    Serializable, Comparable<ServiceCategoryEnum>

    public enum ServiceCategoryEnum
    extends Enum<ServiceCategoryEnum>

    Java class for service-category-enum.

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

     <simpleType name="service-category-enum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="S101"/>
         <enumeration value="S102"/>
         <enumeration value="S103"/>
         <enumeration value="S104"/>
         <enumeration value="S105"/>
         <enumeration value="S106"/>
         <enumeration value="S107"/>
         <enumeration value="S108"/>
         <enumeration value="S109"/>
         <enumeration value="S110"/>
         <enumeration value="S111"/>
         <enumeration value="S112"/>
         <enumeration value="S201"/>
         <enumeration value="S202"/>
         <enumeration value="S203"/>
         <enumeration value="S204"/>
         <enumeration value="S205"/>
         <enumeration value="S206"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      S_101
      PT: Consultoria / Parecer / EN: Consulting
      S_102
      PT: Processo legal / EN: Legal proceeding
      S_103
      PT: Arbitragem científica em revista / EN: Journal scientific committee
      S_104
      PT: Arbitragem científica em conferência / EN: Conference scientific committee
      S_105
      PT: Júri de grau académico / EN: Jury of academic degree
      S_106
      PT: Comissão de avaliação / EN: Evaluation committee
      S_107
      PT: Tutoria / EN: Mentoring / Tutoring
      S_108
      PT: Entrevista / Programa (rádio / tv) / EN: Interview (tv / radio show)
      S_109
      PT: Entrevista (jornal / revista) / EN: Interview (newspaper / magazine)
      S_110
      PT: Orientação / EN: Supervision
      S_111
      PT: Outro júri / avaliação / EN: Other jury / evaluation
      S_112
      PT: Expedição científica / EN: Scientific expedition
      S_201
      PT: Organização de evento / EN: Event organisation
      S_202
      PT: Participação em evento / EN: Event participation
      S_203
      PT: Membro de associação / EN: Association member
      S_204
      PT: Curso / Disciplina leccionado / EN: Course / Discipline taught
      S_205
      PT: Apresentação oral de trabalho / EN: Oral presentation
      S_206
      PT: Membro de comissão / EN: Committee member
    • Enum Constant Detail

      • S_101

        public static final ServiceCategoryEnum S_101
        PT: Consultoria / Parecer / EN: Consulting
      • S_102

        public static final ServiceCategoryEnum S_102
        PT: Processo legal / EN: Legal proceeding
      • S_103

        public static final ServiceCategoryEnum S_103
        PT: Arbitragem científica em revista / EN: Journal scientific committee
      • S_104

        public static final ServiceCategoryEnum S_104
        PT: Arbitragem científica em conferência / EN: Conference scientific committee
      • S_105

        public static final ServiceCategoryEnum S_105
        PT: Júri de grau académico / EN: Jury of academic degree
      • S_106

        public static final ServiceCategoryEnum S_106
        PT: Comissão de avaliação / EN: Evaluation committee
      • S_108

        public static final ServiceCategoryEnum S_108
        PT: Entrevista / Programa (rádio / tv) / EN: Interview (tv / radio show)
      • S_109

        public static final ServiceCategoryEnum S_109
        PT: Entrevista (jornal / revista) / EN: Interview (newspaper / magazine)
      • S_111

        public static final ServiceCategoryEnum S_111
        PT: Outro júri / avaliação / EN: Other jury / evaluation
      • S_112

        public static final ServiceCategoryEnum S_112
        PT: Expedição científica / EN: Scientific expedition
      • S_201

        public static final ServiceCategoryEnum S_201
        PT: Organização de evento / EN: Event organisation
      • S_202

        public static final ServiceCategoryEnum S_202
        PT: Participação em evento / EN: Event participation
      • S_203

        public static final ServiceCategoryEnum S_203
        PT: Membro de associação / EN: Association member
      • S_204

        public static final ServiceCategoryEnum S_204
        PT: Curso / Disciplina leccionado / EN: Course / Discipline taught
      • S_205

        public static final ServiceCategoryEnum S_205
        PT: Apresentação oral de trabalho / EN: Oral presentation
      • S_206

        public static final ServiceCategoryEnum S_206
        PT: Membro de comissão / EN: Committee member
    • Method Detail

      • values

        public static ServiceCategoryEnum[] 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 (ServiceCategoryEnum c : ServiceCategoryEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ServiceCategoryEnum 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()