Daniele B
08/08/2020, 4:16 PMenum class ViewTypes {
TODAY,
LAST_7_DAYS,
LAST_14_DAYS,
TOTAL,
}
and I would like to loop through it:
for (viewType in ViewTypes) {
...
}
but it gives me an error:
Classifier 'ViewTypes' does not have a companion object, and thus must be initialized here
nanodeath
08/08/2020, 4:24 PMViewTypes.values()
works toookarm
08/08/2020, 5:02 PMDaniele B
08/08/2020, 5:02 PM