hi
right now in order to determine whether an episode has been aired, this is what im doing: if airStamp is available then all is good because it's a simple comparison between that value and the current time. however if it is not available, im comparing airDate value to current date, and if airTime is also available, i also compare that to be more accurate.
however when it comes to coding (java for android), this requires me to instantiate several objects and make multiple conversions from String to int - both of these are considered expensive operations. in addition im displaying all episodes of a specific season inside a list and in android (using RecyclerView if you're familiar), the function for displaying each episode (and therefore perform the above instantiations, calculations, and conversions) is called multiple times. this happens not just for each episode in the list, but multiple times per episode.
if you ask me, this is a waste of runtime and it would be a lot more efficient if i just had a field which says whether this episode has already been aired or not. will it be possible to add such a field?

