Java tutorial
/* * * * * Copyright (C) 2017 Adnan BAL Open Source Project * * * * 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 com.adnanbal.fxdedektifi.forex.data.entity.mapper; import com.adnanbal.fxdedektifi.forex.data.entity.UserSignalEntity; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonDeserializer; import com.google.gson.JsonPrimitive; import com.google.gson.JsonSerializer; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken; import java.lang.reflect.Type; import java.util.Date; import java.util.List; import javax.inject.Inject; public class Signal_UserEntityJsonMapper { private final Gson gson; @Inject public Signal_UserEntityJsonMapper() { this.gson = new GsonBuilder() .registerTypeAdapter(Date.class, (JsonDeserializer<Date>) (jsonElement, type, context) -> new Date(jsonElement.getAsJsonPrimitive().getAsLong())) .registerTypeAdapter(Date.class, (JsonSerializer<Date>) (date, type, jsonSerializationContext) -> new JsonPrimitive(date.getTime())) .create(); } /** * Transform from valid json string to {@link UserSignalEntity}. * * @param userSignalJsonResponse A json representing a signal. * @return {@link UserSignalEntity}. * @throws JsonSyntaxException if the json string is not a valid json structure. */ public UserSignalEntity transformUserSignalEntity(String userSignalJsonResponse) throws JsonSyntaxException { final Type userUserSignalEntityType = new TypeToken<UserSignalEntity>() { }.getType(); return this.gson.fromJson(userSignalJsonResponse, userUserSignalEntityType); } /** * Transform from valid json string to List of {@link UserSignalEntity}. * * @param userSignalListJsonResponse A json representing a collection of signals. * @return List of {@link UserSignalEntity}. * @throws JsonSyntaxException if the json string is not a valid json structure. */ public List<UserSignalEntity> transformUserSignalEntityCollection(String userSignalListJsonResponse) throws JsonSyntaxException { final Type listOfUserSignalEntityType = new TypeToken<List<UserSignalEntity>>() { }.getType(); List<UserSignalEntity> list = this.gson.fromJson(userSignalListJsonResponse, listOfUserSignalEntityType); return this.gson.fromJson(userSignalListJsonResponse, listOfUserSignalEntityType); } }