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

com.bmc.truesight.saas.metrics.Fn Maven / Gradle / Ivy

There is a newer version: 0.12
Show newest version
package com.bmc.truesight.saas.metrics;

import com.bmc.truesight.saas.meter.client.model.Measure;

import java.util.List;

public interface Fn {

    @FunctionalInterface
    interface RateConverter {
        Double convert(Double value);
    }

    @FunctionalInterface
    interface GetValue {
        Double getValue(T source);
    }

    @FunctionalInterface
    interface ExtFilter {
        void filter(String name, T toConvert, RateConverter converter, List list);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy