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
publicenumStreamingFormat {
/** Default, if the format is either not known or not another valid format. */UNKNOWN,
/** Smooth Streaming. */SMOOTH,
/** MPEG-DASH (Dynamic Adaptive over HTTP). */DYNAMIC_ADAPTIVE,
/** HTTP Live Streaming (HLS). */HTTP_LIVE
}
The resulting generated code is a class with getters like:
I have this Java declaration in a class:
The resulting generated code is a class with getters like:
I would not expect enum values to be nullable. (It also not clear to me why they are a class in the first place, rather than an enum.)
The text was updated successfully, but these errors were encountered: