io.tarantool.driver.mappers.converters.object.DefaultBooleanToBooleanValueConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cartridge-driver Show documentation
Show all versions of cartridge-driver Show documentation
Tarantool Cartridge driver for Tarantool versions 1.10+ based on Netty framework
package io.tarantool.driver.mappers.converters.object;
import io.tarantool.driver.mappers.converters.ObjectConverter;
import org.msgpack.value.BooleanValue;
import org.msgpack.value.ValueFactory;
/**
* Default {@link Boolean} to {@link BooleanValue} converter
*
* @author Alexey Kuzin
* @author Artyom Dubinin
*/
public class DefaultBooleanToBooleanValueConverter implements ObjectConverter {
private static final long serialVersionUID = 20220418L;
@Override
public BooleanValue toValue(Boolean object) {
return ValueFactory.newBoolean(object);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy