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