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