public enum FundingContributorRole extends Enum<FundingContributorRole> implements Serializable
| Enum Constant and Description |
|---|
CO_LEAD |
LEAD |
OTHER_CONTRIBUTION |
SUPPORTED_BY |
| Modifier and Type | Method and Description |
|---|---|
static FundingContributorRole |
fromValue(String v) |
String |
value() |
static FundingContributorRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FundingContributorRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FundingContributorRole LEAD
public static final FundingContributorRole CO_LEAD
public static final FundingContributorRole SUPPORTED_BY
public static final FundingContributorRole OTHER_CONTRIBUTION
public static FundingContributorRole[] values()
for (FundingContributorRole c : FundingContributorRole.values()) System.out.println(c);
public static FundingContributorRole 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 FundingContributorRole fromValue(String v)
Copyright © 2020. All rights reserved.