Package org.scijava.parse
Interface Item
-
public interface ItemAn item from the list of parsed items; i.e.: a name/value pair.NB: It is unfortunate that we cannot use
javafx.util.Pair, but it is: A) Java 8; and B) part of JavaFX rather than core Java.- Author:
- Curtis Rueden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringname()Gets the name of the item, ornullif unnamed (i.e., raw value with no equals sign).Objectvalue()Gets the value of the item.
-