ltd.fdsa.starter.logger.influxdb.InfluxDbSerie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger-spring-boot-starter Show documentation
Show all versions of logger-spring-boot-starter Show documentation
logger starter for spring boot
package ltd.fdsa.starter.logger.influxdb;
import lombok.Data;
import lombok.ToString;
import java.util.concurrent.TimeUnit;
@Data
@ToString
public class InfluxDbSerie {
private String id;
private String name;
private String timeUnit;
public TimeUnit getRawTimeUnit() {
return TimeUnit.valueOf(timeUnit);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy