public enum PatchType extends Enum<PatchType>
DefaultResourceMatcher| Enum Constant and Description |
|---|
CREATE
Create patch represents initial model setup script.
|
EVOLVE
Evolve patch represents model evolution script.
|
GUESS
Guess patch represents a read only script that detects proper model version from existing database.
|
| Modifier and Type | Method and Description |
|---|---|
static PatchType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PatchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PatchType CREATE
public static final PatchType EVOLVE
public static final PatchType GUESS
public static PatchType[] values()
for (PatchType c : PatchType.values()) System.out.println(c);
public static PatchType 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 FG Forrest, a.s.. All rights reserved.