All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redkale.convert.ext.BoolSimpledCoder Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package org.redkale.convert.ext;

import org.redkale.convert.Reader;
import org.redkale.convert.SimpledCoder;
import org.redkale.convert.Writer;

/**
 * boolean 的SimpledCoder实现
 * 
 * 

* 详情见: https://redkale.org * * @author zhangjx * @param Reader输入的子类型 * @param Writer输出的子类型 */ public final class BoolSimpledCoder extends SimpledCoder { public static final BoolSimpledCoder instance = new BoolSimpledCoder(); @Override public void convertTo(W out, Boolean value) { out.writeBoolean(value); } @Override public Boolean convertFrom(R in) { return in.readBoolean(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy