public static enum Note.NoteableType extends Enum<Note.NoteableType>
| Enum Constant and Description |
|---|
COMMIT |
EPIC |
ISSUE |
MERGE_REQUEST |
SNIPPET |
| Modifier and Type | Method and Description |
|---|---|
static Note.NoteableType |
forValue(String value) |
String |
toString() |
String |
toValue() |
static Note.NoteableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Note.NoteableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Note.NoteableType COMMIT
public static final Note.NoteableType EPIC
public static final Note.NoteableType ISSUE
public static final Note.NoteableType MERGE_REQUEST
public static final Note.NoteableType SNIPPET
public static Note.NoteableType[] values()
for (Note.NoteableType c : Note.NoteableType.values()) System.out.println(c);
public static Note.NoteableType 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 static Note.NoteableType forValue(String value)
public String toValue()
public String toString()
toString in class Enum<Note.NoteableType>Copyright © 2021. All rights reserved.