public static enum AwardEmoji.AwardableType extends java.lang.Enum<AwardEmoji.AwardableType>
| Enum Constant and Description |
|---|
ISSUE |
MERGE_REQUEST |
NOTE |
SNIPPET |
| Modifier and Type | Method and Description |
|---|---|
static AwardEmoji.AwardableType |
forValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
toValue() |
static AwardEmoji.AwardableType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AwardEmoji.AwardableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AwardEmoji.AwardableType ISSUE
public static final AwardEmoji.AwardableType MERGE_REQUEST
public static final AwardEmoji.AwardableType NOTE
public static final AwardEmoji.AwardableType SNIPPET
public static AwardEmoji.AwardableType[] values()
for (AwardEmoji.AwardableType c : AwardEmoji.AwardableType.values()) System.out.println(c);
public static AwardEmoji.AwardableType 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 nullpublic static AwardEmoji.AwardableType forValue(java.lang.String value)
public java.lang.String toValue()
public java.lang.String toString()
toString in class java.lang.Enum<AwardEmoji.AwardableType>