Package pt.cienciavitae.ns.common_enum
Enum IdentifierTypeEnum
- java.lang.Object
-
- java.lang.Enum<IdentifierTypeEnum>
-
- pt.cienciavitae.ns.common_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 Summary
Enum Constants Enum Constant Description AUTHENTICUSIDPT: Authenticus Id / EN: Authenticus IdCIENCIAIDPT: Ciência ID / EN: Ciência IDGOOGLEPT: Google Scholar ID / EN: Google Scholar IDORCIDPT: ORCID iD / EN: ORCID iDSCOPUSPT: Scopus Author Id / EN: Scopus Author IdWOSPT: Researcher Id / EN: Researcher Id
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static IdentifierTypeEnumfromValue(String v)Stringvalue()static IdentifierTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static IdentifierTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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
-
ORCID
public static final IdentifierTypeEnum ORCID
PT: ORCID iD / EN: ORCID iD
-
SCOPUS
public static final IdentifierTypeEnum SCOPUS
PT: Scopus Author Id / EN: Scopus Author Id
-
WOS
public static final IdentifierTypeEnum WOS
PT: Researcher Id / EN: Researcher 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 nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static IdentifierTypeEnum fromValue(String v)
-
-