Get this entire array as a boolean array. Everything must be a boolean.
()
| 621 | |
| 622 | /** Get this entire array as a boolean array. Everything must be a boolean. */ |
| 623 | public boolean[] getBooleanArray() { |
| 624 | boolean[] outgoing = new boolean[size()]; |
| 625 | for (int i = 0; i < size(); i++) { |
| 626 | outgoing[i] = getBoolean(i); |
| 627 | } |
| 628 | return outgoing; |
| 629 | } |
| 630 | |
| 631 | |
| 632 | // /** |
nothing calls this directly
no test coverage detected