org.pkl.thirdparty.msgpack.value.impl.ImmutableBooleanValueImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pkl-config-java-all Show documentation
Show all versions of pkl-config-java-all Show documentation
Shaded fat Jar for pkl-config-java, a Java config library based on the Pkl config language.
//
// MessagePack for Java
//
// 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 org.pkl.thirdparty.msgpack.value.impl;
import org.pkl.thirdparty.msgpack.core.MessagePacker;
import org.pkl.thirdparty.msgpack.value.ImmutableBooleanValue;
import org.pkl.thirdparty.msgpack.value.Value;
import org.pkl.thirdparty.msgpack.value.ValueType;
import java.io.IOException;
/**
* {@code ImmutableBooleanValueImpl} Implements {@code ImmutableBooleanValue} using a {@code boolean} field.
*
* This class is a singleton. {@code ImmutableBooleanValueImpl.trueInstance()} and {@code ImmutableBooleanValueImpl.falseInstance()} are the only instances of this class.
*
* @see org.pkl.thirdparty.msgpack.value.BooleanValue
*/
public class ImmutableBooleanValueImpl
extends AbstractImmutableValue
implements ImmutableBooleanValue
{
public static final ImmutableBooleanValue TRUE = new ImmutableBooleanValueImpl(true);
public static final ImmutableBooleanValue FALSE = new ImmutableBooleanValueImpl(false);
private final boolean value;
private ImmutableBooleanValueImpl(boolean value)
{
this.value = value;
}
@Override
public ValueType getValueType()
{
return ValueType.BOOLEAN;
}
@Override
public ImmutableBooleanValue asBooleanValue()
{
return this;
}
@Override
public ImmutableBooleanValue immutableValue()
{
return this;
}
@Override
public boolean getBoolean()
{
return value;
}
@Override
public void writeTo(MessagePacker packer)
throws IOException
{
packer.packBoolean(value);
}
@Override
public boolean equals(Object o)
{
if (o == this) {
return true;
}
if (!(o instanceof Value)) {
return false;
}
Value v = (Value) o;
if (!v.isBooleanValue()) {
return false;
}
return value == v.asBooleanValue().getBoolean();
}
@Override
public int hashCode()
{
if (value) {
return 1231;
}
else {
return 1237;
}
}
@Override
public String toJson()
{
return Boolean.toString(value);
}
@Override
public String toString()
{
return toJson();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy