Uses of Interface
acdp.design.ICipherFactory
Packages that use ICipherFactory
Package
Description
Contains the core interfaces needed to operate a database.
Contains classes for designing an ACDP database.
-
Uses of ICipherFactory in acdp
Methods in acdp with parameters of type ICipherFactoryModifier 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.static Database
Database.open
(Path mainFile, int opMode, boolean writeProtect, ICipherFactory cipherFactory) Opens the database as a weakly typed database. -
Uses of ICipherFactory in acdp.design
Methods in acdp.design with parameters of type ICipherFactoryModifier and TypeMethodDescriptionfinal void
CustomDatabase.createRO
(Path roDbFilePath, ICipherFactory cipherFactory) protected final void
CustomDatabase.open
(Path mainFile, int opMode, boolean writeProtect, ICipherFactory cipherFactory, int consistencyNumber, CustomTable... customTables) Opens the database as a strongly typed database. -
Uses of ICipherFactory in acdp.tools
Methods in acdp.tools with parameters of type ICipherFactoryModifier 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.