public static enum Options.modes extends Enum<Options.modes>
eu.bandm.tools.d2d2.base.Options#get_mode()
Enum Constant and Description |
---|
ddf2doc
This value indicates: Generate xhtml
documentation for a d2d module (select reader's language.).
|
ddf2dtd
This value indicates: Generate a standard dtd
from a d2d module definition.
|
ddf2format
This value indicates: Export a pretty-printed
source text of the d2d definition module.
|
ddf2htmlform
This value indicates: create an xhtml form for a
d2d module, seen as input template ???? FIXME.
|
ddf2tsoap
This value indicates: Write down the tsoap
serialization of the d2d definition module.
|
ddf2xslt
This value indicates: Write out the xslt rules
(in d2d format) for a d2d module and a target format.
|
dtd2ddf
This value indicates: Import a dtd and convert it
into a d2d definition module.
|
test
This value indicates: .
|
text2texts
This value indicates: Translate one d2d text file
by xslt into different backend formats (xml or pure text).
|
text2xml
This value indicates: Translate one(1) d2d text
input files into one(1) standard xml file.
|
Modifier and Type | Method and Description |
---|---|
static Options.modes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Options.modes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Options.modes text2xml
public static final Options.modes text2texts
public static final Options.modes test
public static final Options.modes ddf2dtd
public static final Options.modes ddf2doc
public static final Options.modes ddf2xslt
public static final Options.modes ddf2htmlform
public static final Options.modes ddf2tsoap
public static final Options.modes ddf2format
public static final Options.modes dtd2ddf
public static Options.modes[] values()
for (Options.modes c : Options.modes.values()) System.out.println(c);
public static Options.modes 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 nullsee also the complete user documentation .