Class ZConfig.Property

java.lang.Object
org.spiderwiz.zutils.ZConfig.Property
Enclosing class:
ZConfig

public static class ZConfig.Property
extends Object
Represents one mapping of property name -> property value.
  • Constructor Details

    • Property

      public Property​(String key, String value)
      Class constructor.
      Parameters:
      key - property name.
      value - property value.
  • Method Details

    • getKey

      public String getKey()
      Returns the property name.
      Returns:
      the property name.
    • getValue

      public String getValue()
      Returns the property value.
      Returns:
      the property value.
    • setValue

      public void setValue​(String value)
      Sets property value.
      Parameters:
      value - property value to set.