Browse Source

Update README.md

Git-Leon 7 years ago
parent
commit
3a6df235ff
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      README.md

+ 1
- 0
README.md View File

86
 	* The class should define a method named `findById` which makes use of a `long id` parameter to return a `Person` object with the respective `id` field.
86
 	* The class should define a method named `findById` which makes use of a `long id` parameter to return a `Person` object with the respective `id` field.
87
 	* The class should define a method named `remove` which makes use of a `Person person` parameter to remove a respective `Person` object.
87
 	* The class should define a method named `remove` which makes use of a `Person person` parameter to remove a respective `Person` object.
88
 	* The class should define a method named `remove` which makes use of a `long id` parameter to remove a `Person` object with the respective `id` field.
88
 	* The class should define a method named `remove` which makes use of a `long id` parameter to remove a `Person` object with the respective `id` field.
89
+	* The class should define a method named `getCount` which returns the size of `oersonList`.
89
 	* The class should define a method named `getArray` which returns an array representation of the `personList` field.
90
 	* The class should define a method named `getArray` which returns an array representation of the `personList` field.
90
 	* The class should define a named `removeAll` which clears our `personList` field.
91
 	* The class should define a named `removeAll` which clears our `personList` field.
91
 	
92