use of de.dagere.peass.measurement.rca.serialization.MeasuredValues in project peass by DaGeRe.
the class GetGraphs method main.
public static void main(final String[] args) throws JsonParseException, JsonMappingException, IOException {
File file = new File(args[0]);
CauseSearchData data = Constants.OBJECTMAPPER.readValue(file, CauseSearchData.class);
MeasuredValues values = data.getNodes().getValues();
printValues(data, values);
}
Aggregations