Class YAMLPropertyWriter.Property

java.lang.Object
org.bytemechanics.config.manager.internal.commons.io.YAMLPropertyWriter.Property
All Implemented Interfaces:
java.lang.Comparable<YAMLPropertyWriter.Property>
Enclosing class:
YAMLPropertyWriter

public static final class YAMLPropertyWriter.Property
extends java.lang.Object
implements java.lang.Comparable<YAMLPropertyWriter.Property>
Input property
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.lang.String key
    Property key
    java.lang.String value
    Property value
  • Constructor Summary

    Constructors 
    Constructor Description
    Property​(java.lang.String _key, java.lang.String _value)  
  • Method Summary

    Modifier and Type Method Description
    int compareTo​(YAMLPropertyWriter.Property _other)  
    boolean equals​(java.lang.Object obj)  
    java.lang.String getKey()  
    java.lang.String getValue()  
    int hashCode()  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • key

      public final java.lang.String key
      Property key
    • value

      public final java.lang.String value
      Property value
  • Constructor Details

    • Property

      public Property​(java.lang.String _key, java.lang.String _value)
  • Method Details