Interface Item


  • public interface Item
    An 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 Detail

      • name

        String name()
        Gets the name of the item, or null if unnamed (i.e., raw value with no equals sign).
      • value

        Object value()
        Gets the value of the item.