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

cass.rollup.processors.predictor.PapNetworkPrediction Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package cass.rollup.processors.predictor;

import org.stjs.javascript.Array;
import org.stjs.javascript.Global;

public class PapNetworkPrediction {

    private Long predictionDate;
    private String subjectPem;
    private Array predictions;

    public PapNetworkPrediction(Long predictionDate, String subjectPem, Array competencyList, PapCompetencyNetwork competencyNetwork) {
        this.predictionDate = predictionDate;
        this.subjectPem = subjectPem;
        predictions = new Array();
        String currentCompetency;
        PapCompetencyPrediction pcp;
        for (int i=0;i getPredictions() {return predictions;}
    public void setPredictions(Array predictions) {this.predictions = predictions;}

    public String getJsonString() {
        return Global.JSON.stringify(this);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy