All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.darwinsys.sql.OutputMode Maven / Gradle / Ivy

There is a newer version: 1.8.0
Show newest version
package com.darwinsys.sql;

/** The set of all valid modes. Short, lowercase names were used
 * for simple use in \mX where X is one of the names.
 */
public enum OutputMode {
	/** Mode for Text */
	t("Text"),
	/** Mode for HTML output */
	h("HTML"),
	/** Mode for SQL output */
	s("SQL"),
	/** Mode for XML output */
	x("XML"),
	/** Mode for JTable */
	j("Table");

	String name;
	OutputMode(String n) {
		name = n;
	}
	public String toString() {
		return name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy