46
46
* information to be used by the handle.
47
47
* <p>
48
48
* The same interface is available to both users of the Oracle NoSQL Database
49
- * Cloud Service and the on-premise Oracle NoSQL Database; however, some methods
49
+ * Cloud Service and the on-premises Oracle NoSQL Database; however, some methods
50
50
* and/or parameters are specific to each environment. The documentation has notes
51
51
* about whether a class, method, or parameter is environment-specific. Unless
52
52
* otherwise noted they are applicable to both environments.
@@ -280,12 +280,12 @@ public interface NoSQLHandle extends AutoCloseable {
280
280
/**
281
281
* Queries a table based on the query statement specified in the
282
282
* {@link QueryRequest}.
283
- *
283
+ * <p>
284
284
* Queries that include a full shard key will execute much more efficiently
285
285
* than more distributed queries that must go to multiple shards.
286
286
* <p>
287
287
* Table- and system-style queries such as "CREATE TABLE ..." or "DROP TABLE .."
288
- * are not supported by this interfaces . Those operations must be performed using
288
+ * are not supported by this interface . Those operations must be performed using
289
289
* {@link #tableRequest} or {@link #systemRequest} as appropriate.
290
290
* <p>
291
291
* The amount of data read by a single query request is limited by a system
@@ -315,7 +315,7 @@ public interface NoSQLHandle extends AutoCloseable {
315
315
/**
316
316
* Queries a table based on the query statement specified in the
317
317
* {@link QueryRequest} while returning an iterable result.
318
- *
318
+ * <p>
319
319
* Queries that include a full shard key will execute much more efficiently
320
320
* than more distributed queries that must go to multiple shards.
321
321
* <p>
@@ -325,7 +325,7 @@ public interface NoSQLHandle extends AutoCloseable {
325
325
* and not this method.
326
326
* <p>
327
327
* Table- and system-style queries such as "CREATE TABLE ..." or "DROP TABLE .."
328
- * are not supported by this interfaces . Those operations must be performed using
328
+ * are not supported by this interface . Those operations must be performed using
329
329
* {@link #tableRequest} or {@link #systemRequest} as appropriate.
330
330
* <p>
331
331
* The results are returned through an iterator, if connected to the
@@ -428,7 +428,7 @@ TableResult doTableRequest(TableRequest request,
428
428
int pollIntervalMs );
429
429
430
430
/**
431
- * On-premise only.
431
+ * On-premises only.
432
432
* <p>
433
433
* Performs a system operation on the system, such as
434
434
* administrative operations that don't affect a specific table. For
@@ -460,7 +460,7 @@ TableResult doTableRequest(TableRequest request,
460
460
SystemResult systemRequest (SystemRequest request );
461
461
462
462
/**
463
- * On-premise only.
463
+ * On-premises only.
464
464
* <p>
465
465
* Checks the status of an operation previously performed using
466
466
* {@link #systemRequest}.
@@ -482,7 +482,7 @@ TableResult doTableRequest(TableRequest request,
482
482
* state, provisioned throughput and capacity and schema. Dynamic
483
483
* information such as usage is obtained using {@link #getTableUsage}.
484
484
* Throughput, capacity and usage information is only available when using
485
- * the Cloud Service and will be null or not defined on-premise .
485
+ * the Cloud Service and will be null or not defined on-premises .
486
486
*
487
487
* @param request the input parameters for the operation
488
488
*
@@ -556,7 +556,7 @@ TableResult doTableRequest(TableRequest request,
556
556
GetIndexesResult getIndexes (GetIndexesRequest request );
557
557
558
558
/**
559
- * On-premise only.
559
+ * On-premises only.
560
560
* <p>
561
561
* Returns the namespaces in a store as an array of String.
562
562
*
@@ -565,16 +565,16 @@ TableResult doTableRequest(TableRequest request,
565
565
String [] listNamespaces ();
566
566
567
567
/**
568
- * On-premise only.
569
- *
568
+ * On-premises only.
569
+ * <p>
570
570
* Returns the roles in a store as an array of String.
571
571
*
572
572
* @return the list of roles or null if none are found
573
573
*/
574
574
String [] listRoles ();
575
575
576
576
/**
577
- * On-premise only.
577
+ * On-premises only.
578
578
* <p>
579
579
* Returns the users in a store as an array of {@link UserInfo}.
580
580
*
@@ -583,7 +583,7 @@ TableResult doTableRequest(TableRequest request,
583
583
UserInfo [] listUsers ();
584
584
585
585
/**
586
- * On-premise only.
586
+ * On-premises only.
587
587
* <p>
588
588
* A convenience method that performs a SystemRequest and waits for
589
589
* completion of the operation. This is the same as calling {@link
0 commit comments