public static enum ToolOptions.outputFormat extends Enum<ToolOptions.outputFormat>
eu.bandm.tools.dtm.ToolOptions#get_outputFormat()  
   
| Enum Constant and Description | 
|---|
| text | 
| xhtml | 
| xhtml_stand_alone | 
| xml | 
| Modifier and Type | Method and Description | 
|---|---|
| static ToolOptions.outputFormat | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static ToolOptions.outputFormat[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final ToolOptions.outputFormat xhtml
public static final ToolOptions.outputFormat xhtml_stand_alone
public static final ToolOptions.outputFormat xml
public static final ToolOptions.outputFormat text
public static ToolOptions.outputFormat[] values()
for (ToolOptions.outputFormat c : ToolOptions.outputFormat.values()) System.out.println(c);
public static ToolOptions.outputFormat 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 .