public enum ChangelogEntryType extends Enum<ChangelogEntryType>
| Enum Constant and Description |
|---|
ADDED |
CHANGED |
DEPRECATED |
FIXED |
OTHER |
REMOVED |
SECURITY |
| Modifier and Type | Method and Description |
|---|---|
static ChangelogEntryType |
from(String orderNumber) |
String |
toString() |
static ChangelogEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangelogEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangelogEntryType ADDED
public static final ChangelogEntryType CHANGED
public static final ChangelogEntryType DEPRECATED
public static final ChangelogEntryType REMOVED
public static final ChangelogEntryType FIXED
public static final ChangelogEntryType SECURITY
public static final ChangelogEntryType OTHER
public static ChangelogEntryType[] values()
for (ChangelogEntryType c : ChangelogEntryType.values()) System.out.println(c);
public static ChangelogEntryType 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 ChangelogEntryType from(String orderNumber)
public String toString()
toString in class Enum<ChangelogEntryType>Copyright © 2022. All rights reserved.