Package org.scijava.parse
Interface Items
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Object>asMap()Gets the parsed items as a map.booleanisList()Returns true iff there are no named key/value pairs among the items.booleanisMap()Returns true iff all items are named key/value pairs.-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
asMap
Map<String,Object> asMap()
Gets the parsed items as a map. The map will have the same iteration order as the original list.
-
isMap
boolean isMap()
Returns true iff all items are named key/value pairs.
-
isList
boolean isList()
Returns true iff there are no named key/value pairs among the items.
-
-