@@ -457,35 +457,35 @@ public static QueryResultsOption maxWaitTime(long maxWaitTime) {
457
457
*
458
458
* @throws BigQueryException upon failure
459
459
*/
460
- Dataset create (DatasetInfo dataset , DatasetOption ... options ) throws BigQueryException ;
460
+ Dataset create (DatasetInfo dataset , DatasetOption ... options );
461
461
462
462
/**
463
463
* Creates a new table.
464
464
*
465
465
* @throws BigQueryException upon failure
466
466
*/
467
- Table create (TableInfo table , TableOption ... options ) throws BigQueryException ;
467
+ Table create (TableInfo table , TableOption ... options );
468
468
469
469
/**
470
470
* Creates a new job.
471
471
*
472
472
* @throws BigQueryException upon failure
473
473
*/
474
- Job create (JobInfo job , JobOption ... options ) throws BigQueryException ;
474
+ Job create (JobInfo job , JobOption ... options );
475
475
476
476
/**
477
477
* Returns the requested dataset or {@code null} if not found.
478
478
*
479
479
* @throws BigQueryException upon failure
480
480
*/
481
- Dataset getDataset (String datasetId , DatasetOption ... options ) throws BigQueryException ;
481
+ Dataset getDataset (String datasetId , DatasetOption ... options );
482
482
483
483
/**
484
484
* Returns the requested dataset or {@code null} if not found.
485
485
*
486
486
* @throws BigQueryException upon failure
487
487
*/
488
- Dataset getDataset (DatasetId datasetId , DatasetOption ... options ) throws BigQueryException ;
488
+ Dataset getDataset (DatasetId datasetId , DatasetOption ... options );
489
489
490
490
/**
491
491
* Lists the project's datasets. This method returns partial information on each dataset
@@ -495,67 +495,67 @@ public static QueryResultsOption maxWaitTime(long maxWaitTime) {
495
495
*
496
496
* @throws BigQueryException upon failure
497
497
*/
498
- Page <Dataset > listDatasets (DatasetListOption ... options ) throws BigQueryException ;
498
+ Page <Dataset > listDatasets (DatasetListOption ... options );
499
499
500
500
/**
501
501
* Deletes the requested dataset.
502
502
*
503
503
* @return {@code true} if dataset was deleted, {@code false} if it was not found
504
504
* @throws BigQueryException upon failure
505
505
*/
506
- boolean delete (String datasetId , DatasetDeleteOption ... options ) throws BigQueryException ;
506
+ boolean delete (String datasetId , DatasetDeleteOption ... options );
507
507
508
508
/**
509
509
* Deletes the requested dataset.
510
510
*
511
511
* @return {@code true} if dataset was deleted, {@code false} if it was not found
512
512
* @throws BigQueryException upon failure
513
513
*/
514
- boolean delete (DatasetId datasetId , DatasetDeleteOption ... options ) throws BigQueryException ;
514
+ boolean delete (DatasetId datasetId , DatasetDeleteOption ... options );
515
515
516
516
/**
517
517
* Deletes the requested table.
518
518
*
519
519
* @return {@code true} if table was deleted, {@code false} if it was not found
520
520
* @throws BigQueryException upon failure
521
521
*/
522
- boolean delete (String datasetId , String tableId ) throws BigQueryException ;
522
+ boolean delete (String datasetId , String tableId );
523
523
524
524
/**
525
525
* Deletes the requested table.
526
526
*
527
527
* @return {@code true} if table was deleted, {@code false} if it was not found
528
528
* @throws BigQueryException upon failure
529
529
*/
530
- boolean delete (TableId tableId ) throws BigQueryException ;
530
+ boolean delete (TableId tableId );
531
531
532
532
/**
533
533
* Updates dataset information.
534
534
*
535
535
* @throws BigQueryException upon failure
536
536
*/
537
- Dataset update (DatasetInfo dataset , DatasetOption ... options ) throws BigQueryException ;
537
+ Dataset update (DatasetInfo dataset , DatasetOption ... options );
538
538
539
539
/**
540
540
* Updates table information.
541
541
*
542
542
* @throws BigQueryException upon failure
543
543
*/
544
- Table update (TableInfo table , TableOption ... options ) throws BigQueryException ;
544
+ Table update (TableInfo table , TableOption ... options );
545
545
546
546
/**
547
547
* Returns the requested table or {@code null} if not found.
548
548
*
549
549
* @throws BigQueryException upon failure
550
550
*/
551
- Table getTable (String datasetId , String tableId , TableOption ... options ) throws BigQueryException ;
551
+ Table getTable (String datasetId , String tableId , TableOption ... options );
552
552
553
553
/**
554
554
* Returns the requested table or {@code null} if not found.
555
555
*
556
556
* @throws BigQueryException upon failure
557
557
*/
558
- Table getTable (TableId tableId , TableOption ... options ) throws BigQueryException ;
558
+ Table getTable (TableId tableId , TableOption ... options );
559
559
560
560
/**
561
561
* Lists the tables in the dataset. This method returns partial information on each table
@@ -566,7 +566,7 @@ public static QueryResultsOption maxWaitTime(long maxWaitTime) {
566
566
*
567
567
* @throws BigQueryException upon failure
568
568
*/
569
- Page <Table > listTables (String datasetId , TableListOption ... options ) throws BigQueryException ;
569
+ Page <Table > listTables (String datasetId , TableListOption ... options );
570
570
571
571
/**
572
572
* Lists the tables in the dataset. This method returns partial information on each table
@@ -577,51 +577,50 @@ public static QueryResultsOption maxWaitTime(long maxWaitTime) {
577
577
*
578
578
* @throws BigQueryException upon failure
579
579
*/
580
- Page <Table > listTables (DatasetId datasetId , TableListOption ... options ) throws BigQueryException ;
580
+ Page <Table > listTables (DatasetId datasetId , TableListOption ... options );
581
581
582
582
/**
583
583
* Sends an insert all request.
584
584
*
585
585
* @throws BigQueryException upon failure
586
586
*/
587
- InsertAllResponse insertAll (InsertAllRequest request ) throws BigQueryException ;
587
+ InsertAllResponse insertAll (InsertAllRequest request );
588
588
589
589
/**
590
590
* Lists the table's rows.
591
591
*
592
592
* @throws BigQueryException upon failure
593
593
*/
594
594
Page <List <FieldValue >> listTableData (String datasetId , String tableId ,
595
- TableDataListOption ... options ) throws BigQueryException ;
595
+ TableDataListOption ... options );
596
596
597
597
/**
598
598
* Lists the table's rows.
599
599
*
600
600
* @throws BigQueryException upon failure
601
601
*/
602
- Page <List <FieldValue >> listTableData (TableId tableId , TableDataListOption ... options )
603
- throws BigQueryException ;
602
+ Page <List <FieldValue >> listTableData (TableId tableId , TableDataListOption ... options );
604
603
605
604
/**
606
605
* Returns the requested job or {@code null} if not found.
607
606
*
608
607
* @throws BigQueryException upon failure
609
608
*/
610
- Job getJob (String jobId , JobOption ... options ) throws BigQueryException ;
609
+ Job getJob (String jobId , JobOption ... options );
611
610
612
611
/**
613
612
* Returns the requested job or {@code null} if not found.
614
613
*
615
614
* @throws BigQueryException upon failure
616
615
*/
617
- Job getJob (JobId jobId , JobOption ... options ) throws BigQueryException ;
616
+ Job getJob (JobId jobId , JobOption ... options );
618
617
619
618
/**
620
619
* Lists the jobs.
621
620
*
622
621
* @throws BigQueryException upon failure
623
622
*/
624
- Page <Job > listJobs (JobListOption ... options ) throws BigQueryException ;
623
+ Page <Job > listJobs (JobListOption ... options );
625
624
626
625
/**
627
626
* Sends a job cancel request. This call will return immediately. The job status can then be
@@ -632,7 +631,7 @@ Page<List<FieldValue>> listTableData(TableId tableId, TableDataListOption... opt
632
631
* found
633
632
* @throws BigQueryException upon failure
634
633
*/
635
- boolean cancel (String jobId ) throws BigQueryException ;
634
+ boolean cancel (String jobId );
636
635
637
636
/**
638
637
* Sends a job cancel request. This call will return immediately. The job status can then be
@@ -643,21 +642,21 @@ Page<List<FieldValue>> listTableData(TableId tableId, TableDataListOption... opt
643
642
* found
644
643
* @throws BigQueryException upon failure
645
644
*/
646
- boolean cancel (JobId tableId ) throws BigQueryException ;
645
+ boolean cancel (JobId tableId );
647
646
648
647
/**
649
648
* Runs the query associated with the request.
650
649
*
651
650
* @throws BigQueryException upon failure
652
651
*/
653
- QueryResponse query (QueryRequest request ) throws BigQueryException ;
652
+ QueryResponse query (QueryRequest request );
654
653
655
654
/**
656
655
* Returns results of the query associated with the provided job.
657
656
*
658
657
* @throws BigQueryException upon failure
659
658
*/
660
- QueryResponse getQueryResults (JobId job , QueryResultsOption ... options ) throws BigQueryException ;
659
+ QueryResponse getQueryResults (JobId job , QueryResultsOption ... options );
661
660
662
661
/**
663
662
* Returns a channel to write data to be inserted into a BigQuery table. Data format and other
0 commit comments