Interface ProcessedObject.Metric
-
- All Superinterfaces:
Serializable
- Enclosing interface:
- ProcessedObject<O extends ObjectType>
public static interface ProcessedObject.Metric extends Serializable
Metric information, currently for reporting purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable ObjectReferenceType
getEventMarkRef()
Reference to event mark (for event mark based metrics).@Nullable String
getId()
String identifier (for explicit metrics).BigDecimal
getValue()
Value of given metric for this object.boolean
isSelected()
Is this object selected with regards to given metric?
-
-
-
Method Detail
-
getEventMarkRef
@Nullable @Nullable ObjectReferenceType getEventMarkRef()
Reference to event mark (for event mark based metrics).
-
getId
@Nullable @Nullable String getId()
String identifier (for explicit metrics).
-
isSelected
boolean isSelected()
Is this object selected with regards to given metric?
-
getValue
BigDecimal getValue()
Value of given metric for this object.
-
-