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

io.github.icodegarden.commons.lang.algorithm.consistenthash.PhysicalNode Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package io.github.icodegarden.commons.lang.algorithm.consistenthash;

import java.util.Objects;

/**
 * 物理节点
 * 
 * @author Fangfang.Xu
 *
 */
public class PhysicalNode implements Node {

	private final String key;

	public PhysicalNode(String key) {
		this.key = key;
	}

	@Override
	public String getKey() {
		return key;
	}

	@Override
	public int hashCode() {
		return Objects.hash(key);
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		PhysicalNode other = (PhysicalNode) obj;
		return Objects.equals(key, other.key);
	}

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy