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