Interface SignalEventQuery.IAggregationQuery
- All Known Implementing Classes:
SignalEventQuery.AggregationQuery
- Enclosing class:
SignalEventQuery
- API:
- This is a public API.
-
Method Summary
Modifier and TypeMethodDescriptionAdds a result columnAvgSentByUserIdto the query, that contains the average of the fieldSentByUserIdof all (grouped) rows.Adds a result columnAvgSentTimestampto the query, that contains the average of the fieldSentTimestampof all (grouped) rows.Adds a result columnCountto the query, that contains the number of (grouped) rows.Adds a result columnMaxSentByProcessElementPidto the query, that contains the maximum value of the fieldSentByProcessElementPidof all (grouped) rows.Adds a result columnMaxSentByUserIdto the query, that contains the maximum value of the fieldSentByUserIdof all (grouped) rows.Adds a result columnMaxSentByUserNameto the query, that contains the maximum value of the fieldSentByUserNameof all (grouped) rows.Adds a result columnMaxSentTimestampto the query, that contains the maximum value of the fieldSentTimestampof all (grouped) rows.Adds a result columnMaxSignalCodeto the query, that contains the maximum value of the fieldSignalCodeof all (grouped) rows.Adds a result columnMaxSignalEventIdto the query, that contains the maximum value of the fieldSignalEventIdof all (grouped) rows.Adds a result columnMinSentByProcessElementPidto the query, that contains the minimum value of the fieldSentByProcessElementPidof all (grouped) rows.Adds a result columnMinSentByUserIdto the query, that contains the minimum value of the fieldSentByUserIdof all (grouped) rows.Adds a result columnMinSentByUserNameto the query, that contains the minimum value of the fieldSentByUserNameof all (grouped) rows.Adds a result columnMinSentTimestampto the query, that contains the minimum value of the fieldSentTimestampof all (grouped) rows.Adds a result columnMinSignalCodeto the query, that contains the minimum value of the fieldSignalCodeof all (grouped) rows.Adds a result columnMinSignalEventIdto the query, that contains the minimum value of the fieldSignalEventIdof all (grouped) rows.Adds a result columnSumSentByUserIdto the query, that contains the sum of the fieldSentByUserIdof all (grouped) rows.
-
Method Details
-
countRows
SignalEventQuery.AggregationQuery countRows()Adds a result column
Countto the query, that contains the number of (grouped) rows.SQL part:
COUNT(*) AS Count- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSignalEventId
SignalEventQuery.AggregationQuery minSignalEventId()Adds a result column
MinSignalEventIdto the query, that contains the minimum value of the fieldSignalEventIdof all (grouped) rows.SQL part:
MIN(SignalEventId) AS MinSignalEventId- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSignalEventId
SignalEventQuery.AggregationQuery maxSignalEventId()Adds a result column
MaxSignalEventIdto the query, that contains the maximum value of the fieldSignalEventIdof all (grouped) rows.SQL part:
MAX(SignalEventId) AS MaxSignalEventId- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSignalCode
SignalEventQuery.AggregationQuery minSignalCode()Adds a result column
MinSignalCodeto the query, that contains the minimum value of the fieldSignalCodeof all (grouped) rows.SQL part:
MIN(SignalCode) AS MinSignalCode- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSignalCode
SignalEventQuery.AggregationQuery maxSignalCode()Adds a result column
MaxSignalCodeto the query, that contains the maximum value of the fieldSignalCodeof all (grouped) rows.SQL part:
MAX(SignalCode) AS MaxSignalCode- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
avgSentTimestamp
SignalEventQuery.AggregationQuery avgSentTimestamp()Adds a result column
AvgSentTimestampto the query, that contains the average of the fieldSentTimestampof all (grouped) rows.SQL part:
AVG(SentTimestamp) AS AvgSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSentTimestamp
SignalEventQuery.AggregationQuery minSentTimestamp()Adds a result column
MinSentTimestampto the query, that contains the minimum value of the fieldSentTimestampof all (grouped) rows.SQL part:
MIN(SentTimestamp) AS MinSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSentTimestamp
SignalEventQuery.AggregationQuery maxSentTimestamp()Adds a result column
MaxSentTimestampto the query, that contains the maximum value of the fieldSentTimestampof all (grouped) rows.SQL part:
MAX(SentTimestamp) AS MaxSentTimestamp- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSentByUserName
SignalEventQuery.AggregationQuery minSentByUserName()Adds a result column
MinSentByUserNameto the query, that contains the minimum value of the fieldSentByUserNameof all (grouped) rows.SQL part:
MIN(SentByUserName) AS MinSentByUserNameThis is a virtual column. It contains the same value as the column
Nameof the referencedSecurityMember.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSentByUserName
SignalEventQuery.AggregationQuery maxSentByUserName()Adds a result column
MaxSentByUserNameto the query, that contains the maximum value of the fieldSentByUserNameof all (grouped) rows.SQL part:
MAX(SentByUserName) AS MaxSentByUserNameThis is a virtual column. It contains the same value as the column
Nameof the referencedSecurityMember.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
sumSentByUserId
SignalEventQuery.AggregationQuery sumSentByUserId()Adds a result column
SumSentByUserIdto the query, that contains the sum of the fieldSentByUserIdof all (grouped) rows.SQL part:
SUM(SentByUserId) AS SumSentByUserIdThis is a virtual column. It contains the same value as the column
UserIdof the referencedUser.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
avgSentByUserId
SignalEventQuery.AggregationQuery avgSentByUserId()Adds a result column
AvgSentByUserIdto the query, that contains the average of the fieldSentByUserIdof all (grouped) rows.SQL part:
AVG(SentByUserId) AS AvgSentByUserIdThis is a virtual column. It contains the same value as the column
UserIdof the referencedUser.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSentByUserId
SignalEventQuery.AggregationQuery minSentByUserId()Adds a result column
MinSentByUserIdto the query, that contains the minimum value of the fieldSentByUserIdof all (grouped) rows.SQL part:
MIN(SentByUserId) AS MinSentByUserIdThis is a virtual column. It contains the same value as the column
UserIdof the referencedUser.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSentByUserId
SignalEventQuery.AggregationQuery maxSentByUserId()Adds a result column
MaxSentByUserIdto the query, that contains the maximum value of the fieldSentByUserIdof all (grouped) rows.SQL part:
MAX(SentByUserId) AS MaxSentByUserIdThis is a virtual column. It contains the same value as the column
UserIdof the referencedUser.- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
minSentByProcessElementPid
SignalEventQuery.AggregationQuery minSentByProcessElementPid()Adds a result column
MinSentByProcessElementPidto the query, that contains the minimum value of the fieldSentByProcessElementPidof all (grouped) rows.SQL part:
MIN(SentByProcessElementPid) AS MinSentByProcessElementPid- Returns:
- query for further composition
- API:
- This public API is available in Java.
-
maxSentByProcessElementPid
SignalEventQuery.AggregationQuery maxSentByProcessElementPid()Adds a result column
MaxSentByProcessElementPidto the query, that contains the maximum value of the fieldSentByProcessElementPidof all (grouped) rows.SQL part:
MAX(SentByProcessElementPid) AS MaxSentByProcessElementPid- Returns:
- query for further composition
- API:
- This public API is available in Java.
-