You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Time is currently represented as Rosetta basic time time but in the Java representation it is a String which makes it hard to work with, e.g. hour, minute etc inaccessible in the model.
It should be a record type.
record type {
hour int,
minute int,
second int,
milisecond int
}
The text was updated successfully, but these errors were encountered:
Time is currently represented as Rosetta basic time
time
but in the Java representation it is aString
which makes it hard to work with, e.g.hour
,minute
etc inaccessible in the model.It should be a record type.
The text was updated successfully, but these errors were encountered: