Add this value, but only if it's not already in the list.
(int value)
| 302 | |
| 303 | /** Add this value, but only if it's not already in the list. */ |
| 304 | @SuppressWarnings("unused") |
| 305 | public void appendUnique(int value) { |
| 306 | if (!hasValue(value)) { |
| 307 | append(value); |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | |
| 312 | // public void insert(int index, int value) { |