Skip to content

Commit 02297cb

Browse files
committed
feat(comment) fix the return comment
1 parent a3fc681 commit 02297cb

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

openmessaging-api/src/main/java/io/openmessaging/api/schema/GenericRecord.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,29 +27,30 @@
2727
public interface GenericRecord {
2828

2929
/**
30-
* return schema id
30+
* Get the schema id.
3131
*
3232
* @return schema id
3333
*/
3434
String getSchemaId();
3535

3636
/**
37-
* return the list of fields associated with the record
37+
* Get the list of fields associated with the record.
3838
*
3939
* @return the list of fields associated with the record
4040
*/
4141
List<Field> getFields();
4242

4343
/**
44-
* retrieve the value of the provided field
44+
* Retrieve the value of the provided field.
4545
*
4646
* @param field the field to retrieve the value
4747
* @return the value object
4848
*/
4949
Object getField(Field field);
5050

5151
/**
52-
* retrieve the value of the provided fieldName
52+
* Retrieve the value of the provided fieldName.
53+
*
5354
* @param fieldName the field name to retrieve the value
5455
* @return the value object
5556
*/

0 commit comments

Comments
 (0)