Module bus.setting

Class IniPropertyService

java.lang.Object
org.miaixz.bus.setting.metric.ini.AbstractElement
org.miaixz.bus.setting.metric.ini.IniPropertyService
All Implemented Interfaces:
Serializable, CharSequence, Map.Entry<String,String>, IniElement, IniProperty

public class IniPropertyService extends AbstractElement implements IniProperty
Ini file's parameters, like property1=value1
Since:
Java 17+
Author:
Kimi Liu
See Also:
  • Constructor Details

    • IniPropertyService

      public IniPropertyService(IniSection section, String key, String value, String originalValue, int lineNumber)
      IniProperty constructor
      Parameters:
      section - property section
      key - the property's key, not null
      value - the property's value, null able
      originalValue - the original value of this property line
      lineNumber - line number
    • IniPropertyService

      public IniPropertyService(String key, String value, String originalValue, int lineNumber)
      Parameters:
      key - the property's key, not null
      value - the property's value, null able
      originalValue - the property's original value
      lineNumber - line number
    • IniPropertyService

      public IniPropertyService(IniSection section, String key, String value, int lineNumber)
      IniProperty constructor
      Parameters:
      section - property section
      key - the property's key, not null
      value - the property's value, null able
      lineNumber - line number
    • IniPropertyService

      public IniPropertyService(String key, String value, int lineNumber)
  • Method Details