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