public static enum Recommendation.RecommendationType extends java.lang.Enum<Recommendation.RecommendationType>
| Enum Constant and Description |
|---|
BUSINESS_PARTNER |
COLLEAGUE |
EDUCATION |
SERVICE_PROVIDER |
| Modifier and Type | Method and Description |
|---|---|
static Recommendation.RecommendationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Recommendation.RecommendationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Recommendation.RecommendationType BUSINESS_PARTNER
public static final Recommendation.RecommendationType COLLEAGUE
public static final Recommendation.RecommendationType EDUCATION
public static final Recommendation.RecommendationType SERVICE_PROVIDER
public static Recommendation.RecommendationType[] values()
for (Recommendation.RecommendationType c : Recommendation.RecommendationType.values()) System.out.println(c);
public static Recommendation.RecommendationType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null