io.deepsense.neptune.clientlibrary.models.ChartParams Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-client-library Show documentation
Show all versions of neptune-client-library Show documentation
Enables integration with Neptune in your Java code
/**
* Copyright (c) 2016, CodiLime Inc.
*/
package io.deepsense.neptune.clientlibrary.models;
/**
* Chart parameters.
*/
public interface ChartParams {
/**
*
* @return The name of the chart.
*/
String getName();
/**
*
* @return The series of the chart.
*/
Iterable getSeries();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy