public static enum JdbcArrayColumns.Unsupported extends Enum<JdbcArrayColumns.Unsupported> implements JdbcArrayColumns
ArrayColumns implementation for dialects that do not support array-typed columns.JdbcArrayColumns.DefaultSupport, JdbcArrayColumns.Unsupported| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
String |
getArrayTypeName(SQLType jdbcType)
|
boolean |
isSupported() |
static JdbcArrayColumns.Unsupported |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcArrayColumns.Unsupported[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetArrayTypepublic static final JdbcArrayColumns.Unsupported INSTANCE
public static JdbcArrayColumns.Unsupported[] values()
for (JdbcArrayColumns.Unsupported c : JdbcArrayColumns.Unsupported.values()) System.out.println(c);
public static JdbcArrayColumns.Unsupported 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 boolean isSupported()
isSupported in interface ArrayColumnspublic String getArrayTypeName(SQLType jdbcType)
JdbcArrayColumnsSQLType in an
Array. Defaults to the name of the argument.getArrayTypeName in interface JdbcArrayColumnsjdbcType - the SQLType value representing the type that should be stored in the
Array. Must not be null.SQLType in an
Array. Guaranteed to be not null.Copyright © 2017–2021 Pivotal Software, Inc.. All rights reserved.