public enum ReleaseNoteType extends java.lang.Enum<ReleaseNoteType>
| Enum Constant and Description |
|---|
BUNDLE |
COMPONENT_VERSION |
| Modifier and Type | Method and Description |
|---|---|
static ReleaseNoteType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReleaseNoteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReleaseNoteType BUNDLE
public static final ReleaseNoteType COMPONENT_VERSION
public static ReleaseNoteType[] values()
for (ReleaseNoteType c : ReleaseNoteType.values()) System.out.println(c);
public static ReleaseNoteType 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