@@ -92,7 +92,9 @@ public static Role valueOf(String constant) {
92
92
return type .valueOf (constant );
93
93
}
94
94
95
- /** @return Return the known values for Role. */
95
+ /**
96
+ * @return Return the known values for Role.
97
+ */
96
98
public static Role [] values () {
97
99
return type .values ();
98
100
}
@@ -184,7 +186,9 @@ public DatasetAclEntity(DatasetId id, List<String> targetTypes) {
184
186
this .targetTypes = targetTypes ;
185
187
}
186
188
187
- /** @return Returns DatasetAclEntity's identity. */
189
+ /**
190
+ * @return Returns DatasetAclEntity's identity.
191
+ */
188
192
public DatasetId getId () {
189
193
return id ;
190
194
}
@@ -240,7 +244,9 @@ public Domain(String domain) {
240
244
this .domain = domain ;
241
245
}
242
246
243
- /** @return Returns the domain name. */
247
+ /**
248
+ * @return Returns the domain name.
249
+ */
244
250
public String getDomain () {
245
251
return domain ;
246
252
}
@@ -348,22 +354,30 @@ Access toPb() {
348
354
}
349
355
}
350
356
351
- /** @return Returns a Group entity representing all project's owners. */
357
+ /**
358
+ * @return Returns a Group entity representing all project's owners.
359
+ */
352
360
public static Group ofProjectOwners () {
353
361
return new Group (PROJECT_OWNERS );
354
362
}
355
363
356
- /** @return Returns a Group entity representing all project's readers. */
364
+ /**
365
+ * @return Returns a Group entity representing all project's readers.
366
+ */
357
367
public static Group ofProjectReaders () {
358
368
return new Group (PROJECT_READERS );
359
369
}
360
370
361
- /** @return Returns a Group entity representing all project's writers. */
371
+ /**
372
+ * @return Returns a Group entity representing all project's writers.
373
+ */
362
374
public static Group ofProjectWriters () {
363
375
return new Group (PROJECT_WRITERS );
364
376
}
365
377
366
- /** @return Returns a Group entity representing all BigQuery authenticated users. */
378
+ /**
379
+ * @return Returns a Group entity representing all BigQuery authenticated users.
380
+ */
367
381
public static Group ofAllAuthenticatedUsers () {
368
382
return new Group (ALL_AUTHENTICATED_USERS );
369
383
}
@@ -385,7 +399,9 @@ public User(String email) {
385
399
this .email = email ;
386
400
}
387
401
388
- /** @return Returns user's email. */
402
+ /**
403
+ * @return Returns user's email.
404
+ */
389
405
public String getEmail () {
390
406
return email ;
391
407
}
@@ -437,7 +453,9 @@ public View(TableId id) {
437
453
this .id = id ;
438
454
}
439
455
440
- /** @return Returns table's identity. */
456
+ /**
457
+ * @return Returns table's identity.
458
+ */
441
459
public TableId getId () {
442
460
return id ;
443
461
}
@@ -489,7 +507,9 @@ public Routine(RoutineId id) {
489
507
this .id = id ;
490
508
}
491
509
492
- /** @return Returns routine's identity. */
510
+ /**
511
+ * @return Returns routine's identity.
512
+ */
493
513
public RoutineId getId () {
494
514
return id ;
495
515
}
@@ -537,7 +557,9 @@ public IamMember(String iamMember) {
537
557
this .iamMember = iamMember ;
538
558
}
539
559
540
- /** @return Returns iamMember. */
560
+ /**
561
+ * @return Returns iamMember.
562
+ */
541
563
public String getIamMember () {
542
564
return iamMember ;
543
565
}
@@ -574,16 +596,19 @@ Access toPb() {
574
596
public static final class Expr implements Serializable {
575
597
// Textual representation of an expression in Common Expression Language syntax.
576
598
private final String expression ;
599
+
577
600
/**
578
601
* Optional. Title for the expression, i.e. a short string describing its purpose. This can be
579
602
* used e.g. in UIs which allow to enter the expression.
580
603
*/
581
604
private final String title ;
605
+
582
606
/**
583
607
* Optional. Description of the expression. This is a longer text which describes the
584
608
* expression, e.g. when hovered over it in a UI.
585
609
*/
586
610
private final String description ;
611
+
587
612
/**
588
613
* Optional. String indicating the location of the expression for error reporting, e.g. a file
589
614
* name and a position in the file.
@@ -713,16 +738,23 @@ private Acl(Entity entity, Role role, Expr condition) {
713
738
this .condition = condition ;
714
739
}
715
740
716
- /** @return Returns the entity for this ACL. */
741
+ /**
742
+ * @return Returns the entity for this ACL.
743
+ */
717
744
public Entity getEntity () {
718
745
return entity ;
719
746
}
720
747
721
- /** @return Returns the role specified by this ACL. */
748
+ /**
749
+ * @return Returns the role specified by this ACL.
750
+ */
722
751
public Role getRole () {
723
752
return role ;
724
753
}
725
- /** @return Returns the condition specified by this ACL. */
754
+
755
+ /**
756
+ * @return Returns the condition specified by this ACL.
757
+ */
726
758
public Expr getCondition () {
727
759
return condition ;
728
760
}
0 commit comments