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

com.alibaba.tmq.common.domain.KeyValuePair Maven / Gradle / Ivy

package com.alibaba.tmq.common.domain;

import java.io.Serializable;

/**
 * 键-值对
 * @author tianyao.myc
 *
 */
public class KeyValuePair implements Serializable {

	private static final long serialVersionUID = -1318805120637729763L;

	private Key key;
	
	private Value value;

	public KeyValuePair() {
		
	}
	
	public KeyValuePair(Key key, Value value) {
		this.key = key;
		this.value = value;
	}
	
	public Key getKey() {
		return key;
	}

	public void setKey(Key key) {
		this.key = key;
	}

	public Value getValue() {
		return value;
	}

	public void setValue(Value value) {
		this.value = value;
	}

	@Override
	public String toString() {
		return "KeyValuePair [key=" + key + ", value=" + value + "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy