public static enum JdbcArrayColumns.DefaultSupport extends Enum<JdbcArrayColumns.DefaultSupport> 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.DefaultSupport |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcArrayColumns.DefaultSupport[] |
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.DefaultSupport INSTANCE
public static JdbcArrayColumns.DefaultSupport[] values()
for (JdbcArrayColumns.DefaultSupport c : JdbcArrayColumns.DefaultSupport.values()) System.out.println(c);
public static JdbcArrayColumns.DefaultSupport 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.