(Field<?> f)
| 494 | } |
| 495 | |
| 496 | private final boolean isArrayOfRecords(Field<?> f) { |
| 497 | DataType<?> ct; |
| 498 | return f.getDataType().isArray() |
| 499 | && (ct = f.getDataType().getArrayComponentDataType()) != null |
| 500 | && ct.isQualifiedRecord(); |
| 501 | } |
| 502 | |
| 503 | private final boolean isNil(Attributes attributes) { |
| 504 | return "true".equals(attributes.getValue("xsi:nil")) |
no test coverage detected