added LoganSquare JodaTime converter

This commit is contained in:
Elena Bobkova 2017-01-10 16:18:26 +03:00
parent cf3a9944d5
commit cf2fcd5c36
1 changed files with 65 additions and 0 deletions

View File

@ -0,0 +1,65 @@
/*
* Copyright (c) 2016 Touch Instinct
*
* This file is part of RoboSwag library.
*
* 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 ru.touchin.templates.logansquare;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import com.bluelinelabs.logansquare.typeconverters.TypeConverter;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonParser;
import org.joda.time.DateTime;
import java.io.IOException;
import ru.touchin.roboswag.core.log.Lc;
/**
* LoganSquare converter for joda.time.DateTime
*/
public class LoganSquareJodaTimeConverter implements TypeConverter<DateTime> {
@Override
public DateTime parse(@NonNull final JsonParser jsonParser) throws IOException {
final String dateString = jsonParser.getValueAsString();
try {
return new DateTime(dateString);
} catch (RuntimeException e) {
Lc.assertion(e);
}
return null;
}
@Override
public void serialize(@Nullable final DateTime object,
@Nullable final String fieldName,
final boolean writeFieldNameForObject,
@NonNull final JsonGenerator jsonGenerator)
throws IOException {
if (fieldName != null) {
jsonGenerator.writeStringField(fieldName, object.toString());
} else {
jsonGenerator.writeString(object.toString());
}
}
}