com.futuresight.util.mystique.Tarot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-mystique Show documentation
Show all versions of json-mystique Show documentation
Json Utility to transform Jsons
/*
* Copyright (c) Balajee TM 2016.
* All rights reserved.
* License - @see
*/
/*
* Created on 25 Aug, 2016 by balajeetm
*/
package com.futuresight.util.mystique;
import java.util.List;
import lombok.Data;
import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
/**
* The Class Tarot.
*
* @author balajeetm
*/
/**
* Instantiates a new tarot.
*/
/**
* Instantiates a new tarot.
*/
@Data
public class Tarot {
/** The from. */
private JsonArray from;
/** The to. */
private JsonArray to;
/** The turn. */
private JsonObject turn;
/** The optional. */
private Boolean optional = Boolean.FALSE;
/** The deps. */
private List deps;
/**
* The aces.
* Is a map of turns. More like pre-processing of data for efficiency
* Each field in the json object corresponds to a turn, which is executed
* and saved in the ace
*/
private JsonObject aces;
}