hytale-server/com/hypixel/hytale/codec/store/CodecKey.java

40 lines
843 B
Java

package com.hypixel.hytale.codec.store;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public class CodecKey<T> {
private final String id;
public CodecKey(String id) {
this.id = id;
}
public String getId() {
return this.id;
}
@Override
public boolean equals(@Nullable Object o) {
if (this == o) {
return true;
} else if (o != null && this.getClass() == o.getClass()) {
CodecKey<?> codecKey = (CodecKey<?>)o;
return this.id != null ? this.id.equals(codecKey.id) : codecKey.id == null;
} else {
return false;
}
}
@Override
public int hashCode() {
return this.id != null ? this.id.hashCode() : 0;
}
@Nonnull
@Override
public String toString() {
return "CodecKey{id='" + this.id + "'}";
}
}