@@ -92,7 +92,9 @@ public static Role valueOf(String constant) {
9292 return type .valueOf (constant );
9393 }
9494
95- /** @return Return the known values for Role. */
95+ /**
96+ * @return Return the known values for Role.
97+ */
9698 public static Role [] values () {
9799 return type .values ();
98100 }
@@ -184,7 +186,9 @@ public DatasetAclEntity(DatasetId id, List<String> targetTypes) {
184186 this .targetTypes = targetTypes ;
185187 }
186188
187- /** @return Returns DatasetAclEntity's identity. */
189+ /**
190+ * @return Returns DatasetAclEntity's identity.
191+ */
188192 public DatasetId getId () {
189193 return id ;
190194 }
@@ -240,7 +244,9 @@ public Domain(String domain) {
240244 this .domain = domain ;
241245 }
242246
243- /** @return Returns the domain name. */
247+ /**
248+ * @return Returns the domain name.
249+ */
244250 public String getDomain () {
245251 return domain ;
246252 }
@@ -348,22 +354,30 @@ Access toPb() {
348354 }
349355 }
350356
351- /** @return Returns a Group entity representing all project's owners. */
357+ /**
358+ * @return Returns a Group entity representing all project's owners.
359+ */
352360 public static Group ofProjectOwners () {
353361 return new Group (PROJECT_OWNERS );
354362 }
355363
356- /** @return Returns a Group entity representing all project's readers. */
364+ /**
365+ * @return Returns a Group entity representing all project's readers.
366+ */
357367 public static Group ofProjectReaders () {
358368 return new Group (PROJECT_READERS );
359369 }
360370
361- /** @return Returns a Group entity representing all project's writers. */
371+ /**
372+ * @return Returns a Group entity representing all project's writers.
373+ */
362374 public static Group ofProjectWriters () {
363375 return new Group (PROJECT_WRITERS );
364376 }
365377
366- /** @return Returns a Group entity representing all BigQuery authenticated users. */
378+ /**
379+ * @return Returns a Group entity representing all BigQuery authenticated users.
380+ */
367381 public static Group ofAllAuthenticatedUsers () {
368382 return new Group (ALL_AUTHENTICATED_USERS );
369383 }
@@ -385,7 +399,9 @@ public User(String email) {
385399 this .email = email ;
386400 }
387401
388- /** @return Returns user's email. */
402+ /**
403+ * @return Returns user's email.
404+ */
389405 public String getEmail () {
390406 return email ;
391407 }
@@ -437,7 +453,9 @@ public View(TableId id) {
437453 this .id = id ;
438454 }
439455
440- /** @return Returns table's identity. */
456+ /**
457+ * @return Returns table's identity.
458+ */
441459 public TableId getId () {
442460 return id ;
443461 }
@@ -489,7 +507,9 @@ public Routine(RoutineId id) {
489507 this .id = id ;
490508 }
491509
492- /** @return Returns routine's identity. */
510+ /**
511+ * @return Returns routine's identity.
512+ */
493513 public RoutineId getId () {
494514 return id ;
495515 }
@@ -537,7 +557,9 @@ public IamMember(String iamMember) {
537557 this .iamMember = iamMember ;
538558 }
539559
540- /** @return Returns iamMember. */
560+ /**
561+ * @return Returns iamMember.
562+ */
541563 public String getIamMember () {
542564 return iamMember ;
543565 }
@@ -574,16 +596,19 @@ Access toPb() {
574596 public static final class Expr implements Serializable {
575597 // Textual representation of an expression in Common Expression Language syntax.
576598 private final String expression ;
599+
577600 /**
578601 * Optional. Title for the expression, i.e. a short string describing its purpose. This can be
579602 * used e.g. in UIs which allow to enter the expression.
580603 */
581604 private final String title ;
605+
582606 /**
583607 * Optional. Description of the expression. This is a longer text which describes the
584608 * expression, e.g. when hovered over it in a UI.
585609 */
586610 private final String description ;
611+
587612 /**
588613 * Optional. String indicating the location of the expression for error reporting, e.g. a file
589614 * name and a position in the file.
@@ -713,16 +738,23 @@ private Acl(Entity entity, Role role, Expr condition) {
713738 this .condition = condition ;
714739 }
715740
716- /** @return Returns the entity for this ACL. */
741+ /**
742+ * @return Returns the entity for this ACL.
743+ */
717744 public Entity getEntity () {
718745 return entity ;
719746 }
720747
721- /** @return Returns the role specified by this ACL. */
748+ /**
749+ * @return Returns the role specified by this ACL.
750+ */
722751 public Role getRole () {
723752 return role ;
724753 }
725- /** @return Returns the condition specified by this ACL. */
754+
755+ /**
756+ * @return Returns the condition specified by this ACL.
757+ */
726758 public Expr getCondition () {
727759 return condition ;
728760 }
0 commit comments