public static enum ChangeLogEntry.Type extends java.lang.Enum<ChangeLogEntry.Type>
Modifier and Type | Method and Description |
---|---|
static ChangeLogEntry.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeLogEntry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeLogEntry.Type Created
public static final ChangeLogEntry.Type Updated
public static final ChangeLogEntry.Type Deleted
public static ChangeLogEntry.Type[] values()
for (ChangeLogEntry.Type c : ChangeLogEntry.Type.values()) System.out.println(c);
public static ChangeLogEntry.Type 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 nullCopyright © 2021. All Rights Reserved.