io.datakernel.crdt.CrdtData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-crdt Show documentation
Show all versions of datakernel-crdt Show documentation
Conflict-free replicated data type implementation for DataKernel Framework.
/*
* Copyright (C) 2015-2018 SoftIndex LLC.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.datakernel.crdt;
public final class CrdtData, S> implements Comparable> {
private final K key;
private final S state;
public CrdtData(K key, S state) {
this.key = key;
this.state = state;
}
public K getKey() {
return key;
}
public S getState() {
return state;
}
@Override
public int compareTo(CrdtData o) {
return key.compareTo(o.key);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CrdtData, ?> crdtData = (CrdtData, ?>) o;
return key.equals(crdtData.key) && state.equals(crdtData.state);
}
@Override
public int hashCode() {
return 31 * key.hashCode() + state.hashCode();
}
@Override
public String toString() {
return "CrdtData{key=" + key + ", state=" + state + '}';
}
}