Enum IdentifierTypeEnum

  • All Implemented Interfaces:
    Serializable, Comparable<IdentifierTypeEnum>

    public enum IdentifierTypeEnum
    extends Enum<IdentifierTypeEnum>

    Java class for identifier-type-enum.

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

     <simpleType name="identifier-type-enum">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="CIENCIAID"/>
         <enumeration value="GOOGLE"/>
         <enumeration value="ORCID"/>
         <enumeration value="SCOPUS"/>
         <enumeration value="WOS"/>
         <enumeration value="AUTHENTICUSID"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • CIENCIAID

        public static final IdentifierTypeEnum CIENCIAID
        PT: Ciência ID / EN: Ciência ID
      • GOOGLE

        public static final IdentifierTypeEnum GOOGLE
        PT: Google Scholar ID / EN: Google Scholar ID
      • SCOPUS

        public static final IdentifierTypeEnum SCOPUS
        PT: Scopus Author Id / EN: Scopus Author Id
      • AUTHENTICUSID

        public static final IdentifierTypeEnum AUTHENTICUSID
        PT: Authenticus Id / EN: Authenticus Id
    • Method Detail

      • values

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

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