public static enum IVRepository.OpeningMode extends Enum<IVRepository.OpeningMode>
| Enum Constant and Description |
|---|
CREATE_IF_NEEDED |
MUST_EXIST |
OVERWRITE |
| Modifier and Type | Method and Description |
|---|---|
static IVRepository.OpeningMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IVRepository.OpeningMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IVRepository.OpeningMode MUST_EXIST
public static final IVRepository.OpeningMode CREATE_IF_NEEDED
public static final IVRepository.OpeningMode OVERWRITE
public static IVRepository.OpeningMode[] values()
for (IVRepository.OpeningMode c : IVRepository.OpeningMode.values()) System.out.println(c);
public static IVRepository.OpeningMode 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.