Package org.sonar.api.ce.measure
Interface MeasureComputer.MeasureComputerDefinition
-
- All Known Implementing Classes:
TestMeasureComputerDefinition
- Enclosing interface:
- MeasureComputer
public static interface MeasureComputer.MeasureComputerDefinition
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceMeasureComputer.MeasureComputerDefinition.Builder
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>getInputMetrics()Return the metric keys that can be read usingMeasureComputer.MeasureComputerContext.java.util.Set<java.lang.String>getOutputMetrics()Return the metric keys that can be create usingMeasureComputer.MeasureComputerContext.
-
-
-
Method Detail
-
getInputMetrics
java.util.Set<java.lang.String> getInputMetrics()
Return the metric keys that can be read usingMeasureComputer.MeasureComputerContext. Can be empty for instance when the computer only need to access to issues.
-
getOutputMetrics
java.util.Set<java.lang.String> getOutputMetrics()
Return the metric keys that can be create usingMeasureComputer.MeasureComputerContext. Can never ne empty.
-
-