com.cloudesire.tisana4j.Pair Maven / Gradle / Ivy
package com.cloudesire.tisana4j;
public class Pair
{
private String key;
private String value;
public Pair( String key, String value )
{
this.key = key;
this.value = value;
}
public String getKey()
{
return key;
}
public void setKey( String key )
{
this.key = key;
}
public String getValue()
{
return value;
}
public void setValue( String value )
{
this.value = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy