E
- The array element typepublic interface ArrayRecord<E> extends Attachable, List<E>
Modifier and Type | Method and Description |
---|---|
E[] |
get()
Deprecated.
- 3.7.0 - [#4566] - Use
List.toArray() instead. |
DataType<?> |
getArrayType()
Get the data type of the array.
|
Catalog |
getCatalog()
Get the record type's catalog.
|
DataType<E> |
getDataType()
Get the data type of the array's base type.
|
List<E> |
getList()
Deprecated.
- 3.7.0 - [#4566] - ArrayRecord already extends
List .
There is no need to call this any more. |
String |
getName()
Get the unqualified name of the array type.
|
Package |
getPackage()
Get the UDT package.
|
Schema |
getSchema()
Get the record type's schema.
|
boolean |
isSQLUsable()
Whether this data type can be used from SQL statements.
|
void |
set(Array array)
Deprecated.
- 3.4.0 - [#3127] - Do not use this method any more.
|
void |
set(Collection<? extends E> list)
Deprecated.
- 3.7.0 - [#4566] - Use
List methods instead. |
void |
set(E... array)
Deprecated.
- 3.7.0 - [#4566] - Use
List methods instead. |
void |
setList(List<? extends E> list)
Deprecated.
- 3.4.0 - [#3128] Use
set(Collection) instead. |
attach, configuration, detach
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
parallelStream, removeIf, stream
@Deprecated E[] get()
List.toArray()
instead.@Deprecated List<E> getList()
List
.
There is no need to call this any more.List
.@Deprecated void set(Array array) throws SQLException
SQLException
@Deprecated void set(E... array)
List
methods instead.@Deprecated void set(Collection<? extends E> list)
List
methods instead.List
.@Deprecated void setList(List<? extends E> list)
set(Collection)
instead.List
.Catalog getCatalog()
Schema getSchema()
Package getPackage()
String getName()
DataType<?> getArrayType()
boolean isSQLUsable()
Copyright © 2019. All rights reserved.