Class IntegerNode

All Implemented Interfaces:
Cloneable

public class IntegerNode extends LeafNode<Integer>
The IntegerNode class represents an integer in a configuration tree.
  • Constructor Details

    • IntegerNode

      public IntegerNode()
    • IntegerNode

      public IntegerNode(int value)
  • Method Details

    • value

      public Integer value()
      Overrides:
      value in class LeafNode<Integer>
    • getValue

      public String getValue()
      Description copied from class: LeafNode
      Subclasses must implement this, in compliance with the rules given in the return tag.
      Specified by:
      getValue in class LeafNode<Integer>
      Returns:
      the String representation of the node value, or the 'null' object if the node value is null.
    • toString

      public String toString()
      Description copied from class: LeafNode
      Subclasses must implement this, in compliance with the rules given in the return tag.
      Specified by:
      toString in class LeafNode<Integer>
      Returns:
      the String representation of the node value, or the string "(null)" if the value is null.
    • doSetValue

      protected boolean doSetValue(String value)
      Specified by:
      doSetValue in class LeafNode<Integer>