public enum GOutputFmt extends Enum<GOutputFmt>
GFmtOpt.outputFmt.
The active pretty-printer implements SQL and HTML output. Unknown falls
back to SQL. All other values are retained for API compatibility with older
formatter products and currently cause UnsupportedOperationException
when selected.
| Enum Constant and Description |
|---|
ofCsharp
Legacy C# source renderer selector; not implemented by the active formatter.
|
ofCsharpsbd
Legacy C# StringBuilder renderer selector; not implemented by the active formatter.
|
ofdbobject
Legacy database-object renderer selector; not implemented by the active formatter.
|
ofFromCSharp
Legacy C#-input conversion selector; not implemented by the active formatter.
|
ofFromJava
Legacy Java-input conversion selector; not implemented by the active formatter.
|
ofFromPascal
Legacy Pascal-input conversion selector; not implemented by the active formatter.
|
ofFromPhp
Legacy PHP-input conversion selector; not implemented by the active formatter.
|
ofFromVB
Legacy Visual Basic-input conversion selector; not implemented by the active formatter.
|
ofFromVC
Legacy Visual C++-input conversion selector; not implemented by the active formatter.
|
ofhtml
Syntax-highlighted HTML output; supported.
|
ofhtml2
Legacy alternate HTML renderer selector; not implemented by the active formatter.
|
ofhtmlkeeplayout
Legacy layout-preserving HTML renderer selector; not implemented by the active formatter.
|
ofhtmlkeeplayout2
Legacy alternate layout-preserving HTML renderer selector; not implemented by the active formatter.
|
ofhtmlkeeplayout2modifycase
Legacy alternate case-modifying HTML renderer selector; not implemented by the active formatter.
|
ofhtmlkeeplayoutmodifycase
Legacy case-modifying HTML renderer selector; not implemented by the active formatter.
|
ofjava
Legacy Java source renderer selector; not implemented by the active formatter.
|
ofjavasbf
Legacy Java StringBuffer renderer selector; not implemented by the active formatter.
|
ofpascal
Legacy Pascal source renderer selector; not implemented by the active formatter.
|
ofphp
Legacy PHP source renderer selector; not implemented by the active formatter.
|
ofproc
Legacy embedded-C renderer selector; not implemented by the active formatter.
|
ofprocobol
Legacy embedded-COBOL renderer selector; not implemented by the active formatter.
|
ofrtf
Legacy rich-text renderer selector; not implemented by the active formatter.
|
ofrtfkeeplayout
Legacy layout-preserving rich-text renderer selector; not implemented by the active formatter.
|
ofrtfkeeplayoutmodifycase
Legacy case-modifying rich-text renderer selector; not implemented by the active formatter.
|
ofSql
Plain formatted SQL; supported.
|
oftxtmodifycase
Legacy case-modifying text renderer selector; not implemented by the active formatter.
|
ofUnknown
Unknown output selector; treated as plain SQL by the active formatter.
|
ofvb
Legacy Visual Basic source renderer selector; not implemented by the active formatter.
|
ofvbsbd
Legacy Visual Basic StringBuilder renderer selector; not implemented by the active formatter.
|
ofvc
Legacy Visual C++ source renderer selector; not implemented by the active formatter.
|
ofxml
Legacy XML renderer selector; not implemented by the active formatter.
|
| Modifier and Type | Method and Description |
|---|---|
static GOutputFmt |
of(String type)
Finds an enum value by name without regard to case.
|
static GOutputFmt |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GOutputFmt[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GOutputFmt ofSql
public static final GOutputFmt ofCsharp
public static final GOutputFmt ofCsharpsbd
public static final GOutputFmt ofvb
public static final GOutputFmt ofvbsbd
public static final GOutputFmt ofjava
public static final GOutputFmt ofjavasbf
public static final GOutputFmt ofvc
public static final GOutputFmt ofpascal
public static final GOutputFmt ofphp
public static final GOutputFmt ofproc
public static final GOutputFmt ofprocobol
public static final GOutputFmt ofhtml
public static final GOutputFmt ofhtml2
public static final GOutputFmt ofhtmlkeeplayout
public static final GOutputFmt ofhtmlkeeplayout2
public static final GOutputFmt ofhtmlkeeplayoutmodifycase
public static final GOutputFmt ofhtmlkeeplayout2modifycase
public static final GOutputFmt oftxtmodifycase
public static final GOutputFmt ofxml
public static final GOutputFmt ofdbobject
public static final GOutputFmt ofrtf
public static final GOutputFmt ofrtfkeeplayout
public static final GOutputFmt ofrtfkeeplayoutmodifycase
public static final GOutputFmt ofFromCSharp
public static final GOutputFmt ofFromVB
public static final GOutputFmt ofFromVC
public static final GOutputFmt ofFromJava
public static final GOutputFmt ofFromPhp
public static final GOutputFmt ofFromPascal
public static final GOutputFmt ofUnknown
public static GOutputFmt[] values()
for (GOutputFmt c : GOutputFmt.values()) System.out.println(c);
public static GOutputFmt 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 nullpublic static GOutputFmt of(String type)
type - enum constant namenull for null or an unknown name