public enum InlineViewStyle extends Enum<InlineViewStyle>
| Enum Constant and Description |
|---|
DB2 |
DB2_ZOS |
INFORMIX1 |
INFORMIX2 |
MySQL |
Oracle |
| Modifier and Type | Method and Description |
|---|---|
static InlineViewStyle |
forSession(Session session)
Gets a style for a session.
|
abstract String |
head(String[] columnNames) |
abstract String |
item(String[] values,
String[] columnNames,
int rowNumber) |
abstract String |
separator() |
abstract String |
terminator(String name,
String[] columnNames) |
static InlineViewStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InlineViewStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InlineViewStyle DB2
public static final InlineViewStyle MySQL
public static final InlineViewStyle Oracle
public static final InlineViewStyle INFORMIX1
public static final InlineViewStyle INFORMIX2
public static final InlineViewStyle DB2_ZOS
public final String example
public static InlineViewStyle[] values()
for (InlineViewStyle c : InlineViewStyle.values()) System.out.println(c);
public static InlineViewStyle 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 InlineViewStyle forSession(Session session)
public abstract String head(String[] columnNames) throws SQLException
SQLExceptionpublic abstract String item(String[] values, String[] columnNames, int rowNumber) throws SQLException
SQLExceptionpublic abstract String separator() throws SQLException
SQLExceptionpublic abstract String terminator(String name, String[] columnNames) throws SQLException
SQLException