Uses of Class
edu.caltech.nanodb.commands.CommandProperties
-
Packages that use CommandProperties Package Description edu.caltech.nanodb.commands This package contains the classes that represent the commands that the NanoSQL database recognizes.edu.caltech.nanodb.storage This package contains the classes for the Storage Manager, which is responsible for how data is stored in and retrieved from database files. -
-
Uses of CommandProperties in edu.caltech.nanodb.commands
Fields in edu.caltech.nanodb.commands declared as CommandProperties Modifier and Type Field Description private CommandProperties
CreateIndexCommand. properties
Any additional properties specified in the command.private CommandProperties
CreateTableCommand. properties
Any additional properties specified in the command.Methods in edu.caltech.nanodb.commands that return CommandProperties Modifier and Type Method Description CommandProperties
CreateIndexCommand. getProperties()
Returns any additional properties specified for the command, ornull
if no additional properties were specified.CommandProperties
CreateTableCommand. getProperties()
Returns any additional properties specified for the command, ornull
if no additional properties were specified.Methods in edu.caltech.nanodb.commands with parameters of type CommandProperties Modifier and Type Method Description void
CreateIndexCommand. setProperties(CommandProperties properties)
Sets any additional properties associated with the command.void
CreateTableCommand. setProperties(CommandProperties properties)
Sets any additional properties associated with the command. -
Uses of CommandProperties in edu.caltech.nanodb.storage
Methods in edu.caltech.nanodb.storage with parameters of type CommandProperties Modifier and Type Method Description TableInfo
IndexedTableManager. createTable(java.lang.String tableName, Schema schema, CommandProperties properties)
TableInfo
TableManager. createTable(java.lang.String tableName, Schema schema, CommandProperties properties)
Creates a new table file with the table-name and schema specified in the passed-inTableInfo
object.
-