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

hprose.io.unserialize.java8.OffsetTimeUnserializer Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * OffsetTimeUnserializer.java                            *
 *                                                        *
 * OffsetTime unserializer class for Java.                *
 *                                                        *
 * LastModified: Aug 3, 2016                              *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/

package hprose.io.unserialize.java8;

import static hprose.io.HproseTags.TagDate;
import static hprose.io.HproseTags.TagEmpty;
import static hprose.io.HproseTags.TagString;
import static hprose.io.HproseTags.TagTime;
import hprose.io.convert.java8.OffsetTimeConverter;
import hprose.io.unserialize.BaseUnserializer;
import hprose.io.unserialize.Reader;
import hprose.io.unserialize.ReferenceReader;
import java.io.IOException;
import java.lang.reflect.Type;
import java.time.OffsetTime;

public final class OffsetTimeUnserializer extends BaseUnserializer {

    public final static OffsetTimeUnserializer instance = new OffsetTimeUnserializer();

    @Override
    public OffsetTime unserialize(Reader reader, int tag, Type type) throws IOException {
        OffsetTimeConverter converter = OffsetTimeConverter.instance;
        switch (tag) {
            case TagString: return OffsetTime.parse(ReferenceReader.readString(reader));
            case TagDate: return converter.convertTo(ReferenceReader.readDateTime(reader));
            case TagTime: return converter.convertTo(ReferenceReader.readTime(reader));
            case TagEmpty: return null;
        }
        return super.unserialize(reader, tag, type);
    }

    public OffsetTime read(Reader reader) throws IOException {
        return read(reader, OffsetTime.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy