Reads Matrix flags. Modifies buf position. @param buf ByteBuffer @return flags int array @throws IOException if reading from buffer fails
(ByteBuffer buf)
| 1267 | * @throws IOException if reading from buffer fails |
| 1268 | */ |
| 1269 | private static int[] readFlags(ByteBuffer buf) throws IOException { |
| 1270 | ISMatTag tag = new ISMatTag(buf); |
| 1271 | int[] flags = tag.readToIntArray(); |
| 1272 | return flags; |
| 1273 | } |
| 1274 | |
| 1275 | /** |
| 1276 | * Reads Matrix dimensions. |
no test coverage detected