/*
* Copyright (c) 2016, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.json;
import java.io.Serializable;
Private implementation of JsonValue
for simple ValueType
s allowing their usage in constants which are better to implement Serializable
. Author: Lukas Jungmann
/**
* Private implementation of {@link JsonValue} for simple {@link ValueType}s
* allowing their usage in constants which are better to implement {@link Serializable}.
*
* @author Lukas Jungmann
*/
final class JsonValueImpl implements JsonValue, Serializable {
private final ValueType valueType;
JsonValueImpl(ValueType valueType) {
this.valueType = valueType;
}
Returns the value type of this JSON value.
Returns: JSON value type
/**
* Returns the value type of this JSON value.
*
* @return JSON value type
*/
@Override
public ValueType getValueType() {
return valueType;
}
Compares the specified object with this JsonValue
object for equality. Returns true
if and only if the specified object is also a JsonValue, and their getValueType()
objects are equal.
Params: - obj – the object to be compared for equality with this JsonValue
Returns: true
if the specified object is equal to this JsonValue
/**
* Compares the specified object with this {@link JsonValue}
* object for equality. Returns {@code true} if and only if the
* specified object is also a JsonValue, and their
* {@link #getValueType()} objects are <i>equal</i>.
*
* @param obj the object to be compared for equality with this JsonValue
* @return {@code true} if the specified object is equal to this
* JsonValue
*/
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj instanceof JsonValue) {
return getValueType().equals(((JsonValue) obj).getValueType());
}
return false;
}
Returns the hash code value for this JsonValue
object. The hash code of the JsonValue
object is defined to be its getValueType()
object's hash code. Returns: the hash code value for this JsonValue
object
/**
* Returns the hash code value for this {@link JsonValue} object.
* The hash code of the {@link JsonValue} object is defined to be
* its {@link #getValueType()} object's hash code.
*
* @return the hash code value for this {@link JsonValue} object
*/
@Override
public int hashCode() {
return valueType.hashCode();
}
@Override
public String toString() {
return valueType.name().toLowerCase();
}
}