Uses of Class
acdp.exceptions.CryptoException
Packages that use CryptoException
Package
Description
Contains the core interfaces needed to operate a database.
Contains classes for designing an ACDP database.
-
Uses of CryptoException in acdp
Methods in acdp that throw CryptoExceptionModifier and TypeMethodDescriptionvoid
Database.createRO
(Path roDbFilePath, ICipherFactory cipherFactory) Creates an RO database from the data stored in this database, which must be a WR database.Returns the referenced row of this table.boolean
Table.TableIterator.hasNext()
Returnstrue
if and only if the iteration has more rows.Inserts the specified values into this table and returns the reference to the newly created row.Table.TableIterator.next()
Returns the next row of the table.void
Updates the values of the specified columns of the referenced row with the specified new values.void
For each row of this table updates the values stored in the specified columns with the specified new values.<T> void
Table.updateAllChangeValues
(Column<T> column, Table.ValueChanger<T> valueChanger) For each row of this table updates the value stored in the specified column with a value obtained from the specified value changer.<T> void
Table.updateAllSupplyValues
(Column<T> column, Table.ValueSupplier<T> valueSupplier) For each row of this table updates the value stored in the specified column with a value obtained from the specified value supplier. -
Uses of CryptoException in acdp.design
Methods in acdp.design that throw CryptoExceptionModifier and TypeMethodDescriptionfinal void
CustomDatabase.createRO
(Path roDbFilePath, ICipherFactory cipherFactory) final Row
final <T> T
Returns the value stored at the specified row and column in this table.void
void
<T> void
CustomTable.updateAllChangeValues
(Column<T> column, Table.ValueChanger<T> valueChanger) <T> void
CustomTable.updateAllSupplyValues
(Column<T> column, Table.ValueSupplier<T> valueSupplier) -
Uses of CryptoException in acdp.tools
Methods in acdp.tools that throw CryptoExceptionModifier and TypeMethodDescriptionstatic final <T> void
Refactor.insertColumn
(Path layoutFile, ICipherFactory cipherFactory, String tableName, String columnName, Column<T> column, String refdTableName, int index, T initialValue) Inserts the specified column into the table definition of the specified table at the position given by theindex
argument.static final <T> double
Refactor.modifyColumn
(Path layoutFile, ICipherFactory cipherFactory, String tableName, String columnName, Column<T> column, Table.ValueSwitcher<T> valueSwitcher) Modifies the specified column of the specified table by replacing that column with the specified new column.