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 TypeMethodDescriptionvoidDatabase.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.booleanTable.TableIterator.hasNext()Returnstrueif 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.voidUpdates the values of the specified columns of the referenced row with the specified new values.voidFor each row of this table updates the values stored in the specified columns with the specified new values.<T> voidTable.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> voidTable.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 voidCustomDatabase.createRO(Path roDbFilePath, ICipherFactory cipherFactory) final Rowfinal <T> TReturns the value stored at the specified row and column in this table.voidvoid<T> voidCustomTable.updateAllChangeValues(Column<T> column, Table.ValueChanger<T> valueChanger) <T> voidCustomTable.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> voidRefactor.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 theindexargument.static final <T> doubleRefactor.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.