com.tenio.common.data.zero.implement.ZeroElementImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tenio-common Show documentation
Show all versions of tenio-common Show documentation
TenIO is a java NIO (Non-blocking I/O) based server specifically designed for multiplayer games.
It supports UDP and TCP transports which are handled by Netty for high-speed network transmission.
This is the common module for multipurpose use of the framework.
/*
The MIT License
Copyright (c) 2016-2022 kong
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
package com.tenio.common.data.zero.implement;
import com.tenio.common.data.zero.ZeroElement;
import com.tenio.common.data.zero.ZeroType;
import java.util.Objects;
/**
* This class holds a relationship between a self-definition data type and its value.
*/
public final class ZeroElementImpl implements ZeroElement {
private final ZeroType type;
private final Object data;
/**
* Creates a new instance.
*
* @param type the {@link ZeroType}
* @param data the {@link Object} value
*/
public ZeroElementImpl(ZeroType type, Object data) {
this.type = type;
this.data = data;
}
@Override
public ZeroType getType() {
return type;
}
@Override
public Object getData() {
return data;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ZeroElementImpl zeroDataImpl = (ZeroElementImpl) o;
return type == zeroDataImpl.type && Objects.equals(data, zeroDataImpl.data);
}
@Override
public int hashCode() {
return Objects.hash(type, data);
}
@Override
public String toString() {
return "ZeroElement{" +
"type=" + type +
", data=" + data +
'}';
}
}