Package eu.bandm.tools.d2d2.base
Enum Class Options.modes
- All Implemented Interfaces:
Serializable
,Comparable<Options.modes>
,java.lang.constant.Constable
- Enclosing class:
- Options
This enum type indicates: Select very different
operation modes of this tool.
Source generated from a command line options specification.
For details see the option which uses this enumeration type, as documented at
Options.get_mode_0()
Created on 2024-09-29_19h31m46
by program bandm/metatools/option/compiler, version 2.1
command line =
java bandm/metatools/option/compiler d2dOptions.xml eu.bandm.tools.d2d2.base Options OptionsGui $(HOME)/metatools/src
by program bandm/metatools/option/compiler, version 2.1
command line =
java bandm/metatools/option/compiler d2dOptions.xml eu.bandm.tools.d2d2.base Options OptionsGui $(HOME)/metatools/src
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThis value indicates: Generate xhtml documentation for a d2d module (select reader's language.).This value indicates: Generate a standard dtd from a d2d module definition.This value indicates: Export a pretty-printed source text of the d2d definition module.This value indicates: Write down the tsoap serialization of the d2d definition module.This value indicates: Write out the xslt rules (in d2d format) for particular d2d module and target format.This value indicates: Translate one d2d by xslt.This value indicates: Translate one(1) d2d text input files into one(1) standard xml file. -
Method Summary
Modifier and TypeMethodDescriptionstatic Options.modes
Returns the enum constant of this class with the specified name.static Options.modes[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
text2xml
This value indicates: Translate one(1) d2d text input files into one(1) standard xml file. -
text2texts
This value indicates: Translate one d2d by xslt. DEPRECATED use Batch tool instead!. -
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. -
ddf2doc
This value indicates: Generate xhtml documentation for a d2d module (select reader's language.). -
ddf2xslt
This value indicates: Write out the xslt rules (in d2d format) for particular d2d module and target format. -
ddf2tsoap
This value indicates: Write down the tsoap serialization of the d2d definition module.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-