public enum FundingType extends Enum<FundingType> implements Serializable
Java class for orcid-type.
The following schema fragment specifies the expected content contained within this class.
This class comes from https://github.com/ORCID/ORCID-Source/blob/master/orcid-model/src/main/java/org/orcid/jaxb/model/common/FundingType.java
| Enum Constant and Description |
|---|
AWARD |
CONTRACT |
GRANT |
SALARY_AWARD |
| Modifier and Type | Method and Description |
|---|---|
static FundingType |
fromValue(String v) |
String |
value() |
static FundingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FundingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FundingType GRANT
public static final FundingType CONTRACT
public static final FundingType AWARD
public static final FundingType SALARY_AWARD
public static FundingType[] values()
for (FundingType c : FundingType.values()) System.out.println(c);
public static FundingType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static FundingType fromValue(String v)
Copyright © 2020. All rights reserved.