public class ColumnValues extends Object implements Map<Column,JdbcTypedValue>
| Constructor and Description | 
|---|
| ColumnValues()Constructor with no contained column values. | 
| ColumnValues(Map<Column,JdbcTypedValue> columnValues)Constructor. | 
| ColumnValues(Map<Column,JdbcTypedValue> columnValues,
            String dbName)Constructor. | 
| ColumnValues(String dbName)Constructor with no contained column values. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | clear() | 
| boolean | containsKey(Object key) | 
| boolean | containsValue(Object value) | 
| Set<Map.Entry<Column,JdbcTypedValue>> | entrySet() | 
| JdbcTypedValue | get(Object key) | 
| String | getDbName()Returns the name of the database handle to use for connection
 opening. | 
| boolean | isEmpty() | 
| Set<Column> | keySet() | 
| JdbcTypedValue | put(Column key,
   JdbcTypedValue value) | 
| void | putAll(Map<? extends Column,? extends JdbcTypedValue> t) | 
| JdbcTypedValue | remove(Object key) | 
| int | size() | 
| String | toString() | 
| Collection<JdbcTypedValue> | values() | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAllpublic ColumnValues()
NullPointerException - if table is null.public ColumnValues(String dbName)
dbName - the name of the database handle to use for connection
        opening if needed, or null to use the default database handle
        for the table.NullPointerException - if table is null.public ColumnValues(Map<Column,JdbcTypedValue> columnValues)
columnValues - the column values, or null.NullPointerException - if table is null.public ColumnValues(Map<Column,JdbcTypedValue> columnValues, String dbName)
columnValues - the column values, or null.dbName - the name of the database handle to use for connection
        opening if needed, or null to use the default database handle
        for the table.NullPointerException - if table is null.public String getDbName()
public int size()
size in interface Map<Column,JdbcTypedValue>public boolean isEmpty()
isEmpty in interface Map<Column,JdbcTypedValue>public boolean containsKey(Object key)
containsKey in interface Map<Column,JdbcTypedValue>public boolean containsValue(Object value)
containsValue in interface Map<Column,JdbcTypedValue>public JdbcTypedValue get(Object key)
get in interface Map<Column,JdbcTypedValue>public JdbcTypedValue put(Column key, JdbcTypedValue value)
put in interface Map<Column,JdbcTypedValue>public JdbcTypedValue remove(Object key)
remove in interface Map<Column,JdbcTypedValue>public void putAll(Map<? extends Column,? extends JdbcTypedValue> t)
putAll in interface Map<Column,JdbcTypedValue>public void clear()
clear in interface Map<Column,JdbcTypedValue>public Collection<JdbcTypedValue> values()
values in interface Map<Column,JdbcTypedValue>public Set<Map.Entry<Column,JdbcTypedValue>> entrySet()
entrySet in interface Map<Column,JdbcTypedValue>Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.