public enum ElaborationType extends Enum<ElaborationType>
| Enum Constant and Description |
|---|
ALL |
NEW |
NONE |
UPDATE_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static ElaborationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElaborationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElaborationType ALL
public static final ElaborationType UPDATE_ONLY
public static final ElaborationType NEW
public static final ElaborationType NONE
public static ElaborationType[] values()
for (ElaborationType c : ElaborationType.values()) System.out.println(c);
public static ElaborationType 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 © 2023. All Rights Reserved.