A C D E F G H I L M N O R S T U V W 

A

AccessDeniedException - Exception in com.mapr.db.exceptions
This class is used to wrap checked exceptions when the server returns EACCES.
AccessDeniedException() - Constructor for exception com.mapr.db.exceptions.AccessDeniedException
Default constructor.
AccessDeniedException(String) - Constructor for exception com.mapr.db.exceptions.AccessDeniedException
Constructor.
AccessDeniedException(Throwable) - Constructor for exception com.mapr.db.exceptions.AccessDeniedException
Constructor taking another exception.
AccessDeniedException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.AccessDeniedException
Constructor taking a message and another exception.
addFamily(FamilyDescriptor) - Method in interface com.mapr.db.TableDescriptor
Appends a FamilyDescriptor to this TableDescriptor.
Admin - Interface in com.mapr.db
 
alterFamily(String, String, FamilyDescriptor) - Method in interface com.mapr.db.Admin
 
alterFamily(Path, String, FamilyDescriptor) - Method in interface com.mapr.db.Admin
 
alterTable(TableDescriptor) - Method in interface com.mapr.db.Admin
Modify the attributes of an existing table.

C

checkAndDelete(String, QueryCondition) - Method in interface com.mapr.db.Table
Atomically evaluates the condition on given row and if the condition holds true for the row then it is atomically deleted.
checkAndDelete(ByteBuffer, QueryCondition) - Method in interface com.mapr.db.Table
 
checkAndMutate(String, QueryCondition, DocumentMutation) - Method in interface com.mapr.db.Table
Atomically evaluates the condition on a given row and if the condition holds true for the row then a mutation is applied on the row.
checkAndMutate(ByteBuffer, QueryCondition, DocumentMutation) - Method in interface com.mapr.db.Table
 
checkAndReplace(String, QueryCondition, Document) - Method in interface com.mapr.db.Table
Atomically evaluates the condition on the given row and if the condition holds true for the row then it atomically replaces the row with the given document.
checkAndReplace(ByteBuffer, QueryCondition, Document) - Method in interface com.mapr.db.Table
 
clone() - Method in interface com.mapr.db.FamilyDescriptor
Creates and returns a copy of this FamilyDescriptor.
clone() - Method in interface com.mapr.db.TableDescriptor
Creates and returns a copy of this TableDescriptor.
close() - Method in interface com.mapr.db.Admin
Override AutoCloseable.close() to avoid declaring a checked exception.
close() - Method in interface com.mapr.db.Table
Overrides AutoCloseable.close() to avoid declaring a checked exception.
com.mapr.db - package com.mapr.db
 
com.mapr.db.exceptions - package com.mapr.db.exceptions
 
ControlInfo - Interface in com.mapr.db
 
createTable(String) - Method in interface com.mapr.db.Admin
Creates a Json table at the specified path with 'default' column family and default options.
createTable(Path) - Method in interface com.mapr.db.Admin
Creates a Json table at the specified path with 'default' column family and default options.
createTable(TableDescriptor) - Method in interface com.mapr.db.Admin
Creates a Json table using the specified TableDescriptor.
createTable(TableDescriptor, String[]) - Method in interface com.mapr.db.Admin
Creates a pre-split Json table using the specified TableDescriptor and the split points as the tablet boundaries.
createTable(TableDescriptor, ByteBuffer[]) - Method in interface com.mapr.db.Admin
Creates a pre-split JSON table using the specified TableDescriptor and the split points as the tablet boundaries.
createTable(String) - Static method in class com.mapr.db.MapRDB
Creates a JSON table at the specified path with a 'default' column family and default options.

D

DBConstants - Class in com.mapr.db
 
DBConstants() - Constructor for class com.mapr.db.DBConstants
 
DBException - Exception in com.mapr.db.exceptions
This class is the base class of all exceptions thrown from MapR-DB client code.
DBException() - Constructor for exception com.mapr.db.exceptions.DBException
Default constructor.
DBException(String) - Constructor for exception com.mapr.db.exceptions.DBException
Constructor.
DBException(Throwable) - Constructor for exception com.mapr.db.exceptions.DBException
Constructor taking another exception.
DBException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.DBException
Constructor taking a message and another exception.
DBRetryException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception for any operation which needs a retry (as suggested by jni/server).
DBRetryException() - Constructor for exception com.mapr.db.exceptions.DBRetryException
Default constructor.
DBRetryException(Path) - Constructor for exception com.mapr.db.exceptions.DBRetryException
Constructor.
DBRetryException(String) - Constructor for exception com.mapr.db.exceptions.DBRetryException
Constructor.
DBRetryException(Throwable) - Constructor for exception com.mapr.db.exceptions.DBRetryException
Constructor taking another exception.
DBRetryException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.DBRetryException
Constructor taking a message and another exception.
DBRetryException(Path, Exception) - Constructor for exception com.mapr.db.exceptions.DBRetryException
 
delete(String) - Method in interface com.mapr.db.Table
Deletes a row with the given rowkey.
delete(ByteBuffer) - Method in interface com.mapr.db.Table
 
delete(Document) - Method in interface com.mapr.db.Table
 
delete(Document, FieldPath) - Method in interface com.mapr.db.Table
 
delete(Document, String) - Method in interface com.mapr.db.Table
 
delete(DocumentStream) - Method in interface com.mapr.db.Table
Deletes a set of documents from the table represented by the DocumentStream.
delete(DocumentStream, FieldPath) - Method in interface com.mapr.db.Table
 
delete(DocumentStream, String) - Method in interface com.mapr.db.Table
 
deleteFamily(String, String) - Method in interface com.mapr.db.Admin
Deletes a family from a Json table.
deleteFamily(Path, String) - Method in interface com.mapr.db.Admin
Deletes a family from a Json table.
deleteTable(String) - Method in interface com.mapr.db.Admin
Deletes a Table.
deleteTable(Path) - Method in interface com.mapr.db.Admin
Deletes a Table.
deleteTable(String) - Static method in class com.mapr.db.MapRDB
Deletes a Table.

E

equals(Object) - Method in class com.mapr.db.TableSplitInternal
 
ExceptionHandler - Class in com.mapr.db.exceptions
 
ExceptionHandler() - Constructor for class com.mapr.db.exceptions.ExceptionHandler
 

F

FamilyDescriptor - Interface in com.mapr.db
A FamilyDescriptor describes a family such as its JSON path in the document, time to live, compression settings, and so on.
FamilyDescriptor.Compression - Enum in com.mapr.db
 
FamilyExistsException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception when the family already exists.
FamilyExistsException() - Constructor for exception com.mapr.db.exceptions.FamilyExistsException
Default constructor.
FamilyExistsException(Path, FamilyDescriptor) - Constructor for exception com.mapr.db.exceptions.FamilyExistsException
Constructor.
FamilyExistsException(Throwable) - Constructor for exception com.mapr.db.exceptions.FamilyExistsException
Constructor taking another exception.
FamilyExistsException(Path, FamilyDescriptor, Throwable) - Constructor for exception com.mapr.db.exceptions.FamilyExistsException
Constructor taking a message and another exception.
FamilyNotFoundException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception for any operation on a non-existing family.
FamilyNotFoundException() - Constructor for exception com.mapr.db.exceptions.FamilyNotFoundException
Default constructor.
FamilyNotFoundException(Path, String) - Constructor for exception com.mapr.db.exceptions.FamilyNotFoundException
Constructor.
FamilyNotFoundException(Throwable) - Constructor for exception com.mapr.db.exceptions.FamilyNotFoundException
Constructor taking another exception.
FamilyNotFoundException(Path, String, Throwable) - Constructor for exception com.mapr.db.exceptions.FamilyNotFoundException
Constructor taking a message and another exception.
find() - Method in interface com.mapr.db.Table
Returns a DocumentStream for all the rows in the table.
find(String...) - Method in interface com.mapr.db.Table
Returns a DocumentStream for all the rows in the table.
find(FieldPath...) - Method in interface com.mapr.db.Table
 
find(QueryCondition) - Method in interface com.mapr.db.Table
Returns a DocumentStream for all the rows in the table that match the condition.
find(QueryCondition, String...) - Method in interface com.mapr.db.Table
Returns a document reader for all the rows in the table that match the condition.
find(QueryCondition, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(String) - Method in interface com.mapr.db.Table
Reads the entire document for a given key.
findById(ByteBuffer) - Method in interface com.mapr.db.Table
 
findById(Value) - Method in interface com.mapr.db.Table
 
findById(String, String...) - Method in interface com.mapr.db.Table
Reads the row and projects only the field paths requested.
findById(String, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(ByteBuffer, String...) - Method in interface com.mapr.db.Table
 
findById(ByteBuffer, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(String, QueryCondition) - Method in interface com.mapr.db.Table
Reads the row parts that match the condition and projects only the field paths requested.
findById(ByteBuffer, QueryCondition) - Method in interface com.mapr.db.Table
 
findById(String, QueryCondition, String...) - Method in interface com.mapr.db.Table
 
findById(String, QueryCondition, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(ByteBuffer, QueryCondition, String...) - Method in interface com.mapr.db.Table
 
findById(ByteBuffer, QueryCondition, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(OpListener, String) - Method in interface com.mapr.db.Table
Non-blocking read operation that gets called back on the listener object on success (with the document) or failure (with the error).
findById(OpListener, ByteBuffer) - Method in interface com.mapr.db.Table
 
findById(OpListener, String, String...) - Method in interface com.mapr.db.Table
Non-blocking read operation which gets called back on the listener object on success or failure.
findById(OpListener, String, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(OpListener, ByteBuffer, String...) - Method in interface com.mapr.db.Table
 
findById(OpListener, ByteBuffer, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(OpListener, String, QueryCondition) - Method in interface com.mapr.db.Table
Non-blocking read operation that gets called back on the listener object on success or failure.
findById(OpListener, ByteBuffer, QueryCondition) - Method in interface com.mapr.db.Table
 
findById(OpListener, String, QueryCondition, String...) - Method in interface com.mapr.db.Table
 
findById(OpListener, String, QueryCondition, FieldPath...) - Method in interface com.mapr.db.Table
 
findById(OpListener, ByteBuffer, QueryCondition, String...) - Method in interface com.mapr.db.Table
 
findById(OpListener, ByteBuffer, QueryCondition, FieldPath...) - Method in interface com.mapr.db.Table
 
flush() - Method in interface com.mapr.db.Table
Flushes all the buffered update operations on the client for this table.

G

getCompression() - Method in interface com.mapr.db.FamilyDescriptor
 
getCondition() - Method in class com.mapr.db.TableSplitInternal
 
getCondition() - Method in interface com.mapr.db.TabletInfo
 
getEstimatedNumRows() - Method in interface com.mapr.db.TabletInfo
 
getEstimatedSize() - Method in interface com.mapr.db.TabletInfo
 
getFamilies() - Method in interface com.mapr.db.TableDescriptor
Returns the list of family descriptors for this table.
getFamily(String) - Method in interface com.mapr.db.TableDescriptor
Returns the FamilyDescriptor of the family with the specified name from this TableDescriptor or null if a family by this name does not exist in the TableDescriptor.
getJsonFieldPath() - Method in interface com.mapr.db.FamilyDescriptor
 
getLength() - Method in class com.mapr.db.TableSplitInternal
 
getLocations() - Method in class com.mapr.db.TableSplitInternal
 
getLocations() - Method in interface com.mapr.db.TabletInfo
 
getName() - Method in interface com.mapr.db.FamilyDescriptor
 
getName() - Method in interface com.mapr.db.Table
Returns just the name of the table (not the full path).
getNumFamilies() - Method in interface com.mapr.db.TableDescriptor
Returns the number of family descriptors for this table descriptor.
getOption(Table.TableOption) - Method in interface com.mapr.db.Table
 
getPath() - Method in interface com.mapr.db.Table
Returns the full path of the table.
getPath() - Method in interface com.mapr.db.TableDescriptor
 
getSplitSize() - Method in interface com.mapr.db.TableDescriptor
 
getStartRow() - Method in class com.mapr.db.TableSplitInternal
 
getStopRow() - Method in class com.mapr.db.TableSplitInternal
 
getTable(String) - Static method in class com.mapr.db.MapRDB
Returns an object for accessing the table having the given path name.
getTable(Path) - Static method in class com.mapr.db.MapRDB
Returns an object for accessing the table having the given path name.
getTableDescriptor(String) - Method in interface com.mapr.db.Admin
 
getTableDescriptor(Path) - Method in interface com.mapr.db.Admin
 
getTableDescriptor() - Method in interface com.mapr.db.Table
 
getTableName() - Method in class com.mapr.db.TableSplitInternal
 
getTabletInfo(String) - Method in interface com.mapr.db.Table
 
getTabletInfo(ByteBuffer) - Method in interface com.mapr.db.Table
 
getTabletInfos() - Method in interface com.mapr.db.Table
 
getTabletInfos(QueryCondition) - Method in interface com.mapr.db.Table
 
getTTL() - Method in interface com.mapr.db.FamilyDescriptor
 

H

handle(IOException, String) - Static method in class com.mapr.db.exceptions.ExceptionHandler
 
hashCode() - Method in class com.mapr.db.TableSplitInternal
 
hasName() - Method in interface com.mapr.db.FamilyDescriptor
 

I

increment(String, String, byte) - Method in interface com.mapr.db.Table
Atomically applies an increment to a given field (in dot-separated notation) of the given row id.
increment(ByteBuffer, String, byte) - Method in interface com.mapr.db.Table
 
increment(String, String, short) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, short) - Method in interface com.mapr.db.Table
 
increment(String, String, int) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, int) - Method in interface com.mapr.db.Table
 
increment(String, String, long) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, long) - Method in interface com.mapr.db.Table
 
increment(String, String, float) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, float) - Method in interface com.mapr.db.Table
 
increment(String, String, double) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, double) - Method in interface com.mapr.db.Table
 
increment(String, String, BigDecimal) - Method in interface com.mapr.db.Table
 
increment(ByteBuffer, String, BigDecimal) - Method in interface com.mapr.db.Table
 
insert(String, Document) - Method in interface com.mapr.db.Table
Inserts a row with the given rowkey.
insert(ByteBuffer, Document) - Method in interface com.mapr.db.Table
 
insert(Document) - Method in interface com.mapr.db.Table
 
insert(Document, FieldPath) - Method in interface com.mapr.db.Table
 
insert(Document, String) - Method in interface com.mapr.db.Table
 
insert(DocumentStream) - Method in interface com.mapr.db.Table
Inserts a set of documents represented by the DocumentStream into the table.
insert(DocumentStream, FieldPath) - Method in interface com.mapr.db.Table
 
insert(DocumentStream, String) - Method in interface com.mapr.db.Table
 
insertOrReplace(Document) - Method in interface com.mapr.db.Table
Inserts a new document in the table.
insertOrReplace(String, Document) - Method in interface com.mapr.db.Table
 
insertOrReplace(ByteBuffer, Document) - Method in interface com.mapr.db.Table
 
insertOrReplace(Document, FieldPath) - Method in interface com.mapr.db.Table
 
insertOrReplace(Document, String) - Method in interface com.mapr.db.Table
 
insertOrReplace(DocumentStream) - Method in interface com.mapr.db.Table
Inserts a set of documents represented by the DocumentStream into the table.
insertOrReplace(DocumentStream, FieldPath) - Method in interface com.mapr.db.Table
 
insertOrReplace(DocumentStream, String) - Method in interface com.mapr.db.Table
 
isArrayAppend() - Method in interface com.mapr.db.ControlInfo
 
isAutoSplit() - Method in interface com.mapr.db.TableDescriptor
 
isBulkLoad() - Method in interface com.mapr.db.TableDescriptor
 
isCreate() - Method in interface com.mapr.db.ControlInfo
 
isDelete() - Method in interface com.mapr.db.ControlInfo
 
isInMemory() - Method in interface com.mapr.db.FamilyDescriptor
 
isInsertionOrder() - Method in interface com.mapr.db.TableDescriptor
 

L

listTables() - Method in interface com.mapr.db.Admin
List all tables in user's home directory.
listTables(String) - Method in interface com.mapr.db.Admin
List all tables in the specified folder and/or with the matching pattern.
listTables(Path) - Method in interface com.mapr.db.Admin
List all tables in the specified folder and/or with the matching pattern.

M

MapRDB - Class in com.mapr.db
 

N

newAdmin() - Static method in class com.mapr.db.MapRDB
Creates and returns an Admin instance with default configuration.
newAdmin(Configuration) - Static method in class com.mapr.db.MapRDB
Creates and returns an Admin instance with specified configuration.
newCondition() - Static method in class com.mapr.db.MapRDB
Creates and returns a new QueryCondition object.
newDefaultFamilyDescriptor() - Static method in class com.mapr.db.MapRDB
Creates and returns a FamilyDescriptor instance for the "default" family.
newDocument() - Static method in class com.mapr.db.MapRDB
Creates and returns a new, empty instance of Document.
newDocument(String) - Static method in class com.mapr.db.MapRDB
Returns a new instance of Document parsed from the specified JSON string.
newDocument(Map<String, Object>) - Static method in class com.mapr.db.MapRDB
Returns a new instance of Document constructed from the specified Map
newDocument(Object) - Static method in class com.mapr.db.MapRDB
Returns a new instance of Document built from the specified Java bean.
newDocumentBuilder() - Static method in class com.mapr.db.MapRDB
Returns the MapRDB storage implementation of DocumentBuilder interface.
newFamilyDescriptor() - Static method in class com.mapr.db.MapRDB
Creates and returns a FamilyDescriptor instance.
newFamilyDescriptor(String, String) - Static method in class com.mapr.db.MapRDB
Creates and returns a FamilyDescriptor instance initialized with the specified family name and its JSON path.
newFamilyDescriptor(String, FieldPath) - Static method in class com.mapr.db.MapRDB
Creates and returns a FamilyDescriptor instance initialized with the specified family name and its JSON path.
newMutation() - Static method in class com.mapr.db.MapRDB
Creates and returns a new DocumentMutation object.
newTableDescriptor() - Static method in class com.mapr.db.MapRDB
Creates and returns a TableDescriptor instance.
newTableDescriptor(String) - Static method in class com.mapr.db.MapRDB
Creates and returns a TableDescriptor instance initialized with the specified path.
newTableDescriptor(Path) - Static method in class com.mapr.db.MapRDB
Creates and returns a TableDescriptor instance initialized with the specified path.
newTableDescriptor(boolean) - Static method in class com.mapr.db.MapRDB
Deprecated.

O

OpNotPermittedException - Exception in com.mapr.db.exceptions
This class is used to wrap checked exceptions when the server returns EPERM.
OpNotPermittedException() - Constructor for exception com.mapr.db.exceptions.OpNotPermittedException
Default constructor.
OpNotPermittedException(String) - Constructor for exception com.mapr.db.exceptions.OpNotPermittedException
Constructor.
OpNotPermittedException(Throwable) - Constructor for exception com.mapr.db.exceptions.OpNotPermittedException
Constructor taking another exception.
OpNotPermittedException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.OpNotPermittedException
Constructor taking a message and another exception.

R

readField(DataInput) - Method in class com.mapr.db.TableSplitInternal
 
readFields(DataInput) - Method in class com.mapr.db.TableSplitInternal
 
ReadOnlyException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception when we try to insert/update/ delete from a table that is read-only.
ReadOnlyException() - Constructor for exception com.mapr.db.exceptions.ReadOnlyException
Default constructor.
ReadOnlyException(String) - Constructor for exception com.mapr.db.exceptions.ReadOnlyException
Constructor.
ReadOnlyException(Throwable) - Constructor for exception com.mapr.db.exceptions.ReadOnlyException
Constructor taking another exception.
ReadOnlyException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.ReadOnlyException
Constructor taking a message and another exception.
replace(String, Document) - Method in interface com.mapr.db.Table
Replaces a document in the table.
replace(ByteBuffer, Document) - Method in interface com.mapr.db.Table
 
replace(Document) - Method in interface com.mapr.db.Table
 
replace(Document, FieldPath) - Method in interface com.mapr.db.Table
 
replace(Document, String) - Method in interface com.mapr.db.Table
 
replace(DocumentStream) - Method in interface com.mapr.db.Table
Replaces a set of documents represented by the DocumentStream into the table.
replace(DocumentStream, FieldPath) - Method in interface com.mapr.db.Table
 
replace(DocumentStream, String) - Method in interface com.mapr.db.Table
 
ROWKEY_FIELD - Static variable in class com.mapr.db.DBConstants
Deprecated.
ROWKEY_ID - Static variable in class com.mapr.db.DBConstants
Deprecated.

S

setAutoSplit(boolean) - Method in interface com.mapr.db.TableDescriptor
Sets the tablets to split automatically, or not, if they grow beyond a certain size.
setBulkLoad(boolean) - Method in interface com.mapr.db.TableDescriptor
Sets if the table is created with bulk load mode turned on.
setCompression(FamilyDescriptor.Compression) - Method in interface com.mapr.db.FamilyDescriptor
Sets the FamilyDescriptor.Compression scheme used to store data in the family
setFamilies(List<FamilyDescriptor>) - Method in interface com.mapr.db.TableDescriptor
Sets the list of families for this TableDescriptor.
setInMemory(boolean) - Method in interface com.mapr.db.FamilyDescriptor
Sets whether preference is given to data of this family when data is evicted from the in-memory cache.
setInsertionOrder(boolean) - Method in interface com.mapr.db.TableDescriptor
Sets the map entries to be stored in the order they are added or not to be stored in order.
setJsonFieldPath(String) - Method in interface com.mapr.db.FamilyDescriptor
Sets the JSON field path of this family
setJsonFieldPath(FieldPath) - Method in interface com.mapr.db.FamilyDescriptor
Sets the JSON field path of this family
setLocations(String[]) - Method in class com.mapr.db.TableSplitInternal
 
setName(String) - Method in interface com.mapr.db.FamilyDescriptor
Sets the name of this family.
setOption(Table.TableOption, boolean) - Method in interface com.mapr.db.Table
 
setPath(String) - Method in interface com.mapr.db.TableDescriptor
Sets the path of this table in MapR FileSystem.
setPath(Path) - Method in interface com.mapr.db.TableDescriptor
Sets the path of this table in MapR FileSystem.
setSplitSize(long) - Method in interface com.mapr.db.TableDescriptor
Sets the size in mebibytes at which a tablet in this table will split.
setTTL(long) - Method in interface com.mapr.db.FamilyDescriptor
Sets the Time-To-Live for the data stored in this family

T

Table - Interface in com.mapr.db
 
Table.TableOption - Enum in com.mapr.db
Following are different table options:

EXCLUDEID: If this option is set to true then rowkey (field "_id") won't be returned in the result of a find or findById operation.
TableClosedException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception for any operation on a table that has been closed.
TableClosedException() - Constructor for exception com.mapr.db.exceptions.TableClosedException
Default constructor.
TableClosedException(String) - Constructor for exception com.mapr.db.exceptions.TableClosedException
Constructor.
TableClosedException(Throwable) - Constructor for exception com.mapr.db.exceptions.TableClosedException
Constructor taking another exception.
TableClosedException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.TableClosedException
Constructor taking a message and another exception.
TableDescriptor - Interface in com.mapr.db
A TableDescriptor contains the details about a table such as the descriptors of all the families, the size at which a tablet split should occur, whether or not bulk load mode is turn on, and so on.
tableExists(String) - Method in interface com.mapr.db.Admin
 
tableExists(Path) - Method in interface com.mapr.db.Admin
 
tableExists(String) - Static method in class com.mapr.db.MapRDB
Test for the existence of Table at the given path.
TableExistsException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception when the table already exists.
TableExistsException() - Constructor for exception com.mapr.db.exceptions.TableExistsException
Default constructor.
TableExistsException(Path) - Constructor for exception com.mapr.db.exceptions.TableExistsException
Constructor.
TableExistsException(String) - Constructor for exception com.mapr.db.exceptions.TableExistsException
Constructor.
TableExistsException(Throwable) - Constructor for exception com.mapr.db.exceptions.TableExistsException
Constructor taking another exception.
TableExistsException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.TableExistsException
Constructor taking a message and another exception.
TableExistsException(Path, Exception) - Constructor for exception com.mapr.db.exceptions.TableExistsException
 
TableNotFoundException - Exception in com.mapr.db.exceptions
This class is used to wrap a checked exception for any operation on a non-existing table.
TableNotFoundException() - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
Default constructor.
TableNotFoundException(Path) - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
Constructor.
TableNotFoundException(String) - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
Constructor.
TableNotFoundException(Throwable) - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
Constructor taking another exception.
TableNotFoundException(String, Throwable) - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
Constructor taking a message and another exception.
TableNotFoundException(Path, Exception) - Constructor for exception com.mapr.db.exceptions.TableNotFoundException
 
TableSplitInternal - Class in com.mapr.db
 
TableSplitInternal() - Constructor for class com.mapr.db.TableSplitInternal
 
TableSplitInternal(TableSplitInternal) - Constructor for class com.mapr.db.TableSplitInternal
 
TableSplitInternal(String, QueryCondition, String[], long) - Constructor for class com.mapr.db.TableSplitInternal
 
TabletInfo - Interface in com.mapr.db
 
toString() - Method in class com.mapr.db.TableSplitInternal
Returns the details about this instance as a string.

U

update(String, DocumentMutation) - Method in interface com.mapr.db.Table
Applies a row mutation on the row identified by the row id.
update(ByteBuffer, DocumentMutation) - Method in interface com.mapr.db.Table
 

V

valueOf(String) - Static method in enum com.mapr.db.FamilyDescriptor.Compression
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.mapr.db.Table.TableOption
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.mapr.db.FamilyDescriptor.Compression
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.mapr.db.Table.TableOption
Returns an array containing the constants of this enum type, in the order they are declared.

W

write(DataOutput) - Method in class com.mapr.db.TableSplitInternal
 
A C D E F G H I L M N O R S T U V W 

Copyright © 2016 Mapr Technologies, Inc.. All rights reserved.