All Downloads are FREE. Search and download functionalities are using the official Maven repository.

kz.greetgo.strconverter.simple.core.NameValue Maven / Gradle / Ivy

package kz.greetgo.strconverter.simple.core;

public class NameValue {
  public final String name;
  public final Object value;

  public NameValue(String name, Object value) {
    this.name = name;
    this.value = value;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy