Package lumis.portal.monitor
Interface IMonitorField
-
- All Known Subinterfaces:
IMonitorFieldSPI
- All Known Implementing Classes:
MonitorField
@StableMinor(version="14.1", sinceVersion="11.0") public interface IMonitorField
A field of a monitoringevent
. This definition will be used to define abig data field
where the data related will be saved.- Since:
- 9.0.0
- Version:
- $Revision: 24683 $ $Date: 2021-08-23 18:55:58 -0300 (Mon, 23 Aug 2021) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IMonitorField.DataType
The possible data type for an event field.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMonitorField.DataType
getDataType()
Returns this field data type.String
getDescription()
Returns the (localizable description).String
getId()
Returns the identifier of this field.Collection<IMonitorField>
getInnerFields()
Returns an unmodifiable collection of inner fields.String
getLocalizedDescription()
Returns the localized description of this field.String
getLocalizedName()
Returns the localized name of this field.String
getLocalizedUnit()
Returns the localized unit of this field.String
getName()
Returns the (localizable) name of this field.String
getStringResourcePath()
Returns this field string resource path (used, if present, to localize strings).String
getUnit()
Returns the (localizable) unit of this field.boolean
identifiesUser()
Indicates whether this field identifies the user and must have its value modified when anonymized.
-
-
-
Method Detail
-
getId
String getId()
Returns the identifier of this field.- Returns:
- the identifier of this field.
- Since:
- 9.0.0
-
getName
String getName()
Returns the (localizable) name of this field.- Returns:
- the (localizable) name of this field.
- Since:
- 9.0.0
-
getLocalizedName
String getLocalizedName()
Returns the localized name of this field.- Returns:
- the name for this field.
- Since:
- 11.0.0
-
getDescription
String getDescription()
Returns the (localizable description).- Returns:
- the (localizable description).
- Since:
- 9.0.0
-
getLocalizedDescription
String getLocalizedDescription()
Returns the localized description of this field.- Returns:
- the description of this field.
- Since:
- 11.0.0
-
getUnit
String getUnit()
Returns the (localizable) unit of this field.- Returns:
- the (localizable) unit of this field.
- Since:
- 9.0.0
-
getLocalizedUnit
String getLocalizedUnit()
Returns the localized unit of this field.- Returns:
- the localized unit of this field.
- Since:
- 11.0.0
-
getStringResourcePath
String getStringResourcePath()
Returns this field string resource path (used, if present, to localize strings).- Returns:
- this field string resource path (used, if present, to localize strings).
- Since:
- 9.0.0
-
getDataType
IMonitorField.DataType getDataType()
Returns this field data type.- Returns:
- this field data type.
- Since:
- 9.0.0
-
getInnerFields
Collection<IMonitorField> getInnerFields()
Returns an unmodifiable collection of inner fields.- Returns:
- an unmodifiable collection of inner fields.
- Throws:
IllegalStateException
- if this field is not acomplex
field.- Since:
- 10.2.0
-
identifiesUser
boolean identifiesUser()
Indicates whether this field identifies the user and must have its value modified when anonymized.- Returns:
true
if this field identifies the user,false
otherwise.- Since:
- 12.3.0
-
-