public static enum Index.Change extends Enum<Index.Change>
| Modifier and Type | Method and Description |
|---|---|
static Index.Change |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Index.Change[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Index.Change ADDED
public static final Index.Change UPDATED
public static final Index.Change DELETED
public static Index.Change[] values()
for (Index.Change c : Index.Change.values()) System.out.println(c);
public static Index.Change 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 © 2025 Suncode. All rights reserved.