public enum ScriptFormat extends java.lang.Enum<ScriptFormat>
Enum Constant and Description |
---|
DBUNIT_FLAT_XML
DbUnit's FlatXmlDataSet format.
|
INTRA_DATABASE
Intra database export.
|
JSON
Template based JSON.
|
LIQUIBASE_XML |
SQL
SQL DML.
|
XML
Template based XML.
|
YAML
Template based YAML.
|
Modifier and Type | Field and Description |
---|---|
boolean |
separatorFollowed
Is followed by separator in drop-down-list?
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayName()
Gets human readable name.
|
java.lang.String |
getFileChooserTitle()
Gets file chooser title.
|
java.lang.String |
getFileExtension()
Gets file extension.
|
boolean |
isObjectNotation()
Is object notation format) (XML, jSON, YAML, ...)
|
static ScriptFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScriptFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptFormat SQL
public static final ScriptFormat INTRA_DATABASE
public static final ScriptFormat JSON
public static final ScriptFormat YAML
public static final ScriptFormat XML
public static final ScriptFormat DBUNIT_FLAT_XML
public static final ScriptFormat LIQUIBASE_XML
public final boolean separatorFollowed
public static ScriptFormat[] values()
for (ScriptFormat c : ScriptFormat.values()) System.out.println(c);
public static ScriptFormat 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 nullpublic java.lang.String getDisplayName()
public boolean isObjectNotation()
public java.lang.String getFileChooserTitle()
public java.lang.String getFileExtension()