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
In ArrayUtils most code is based on determining the array component type of the Object and then doing something with it—this can actually be useful for outside callers, too.
Make the array type enum public
Currently it holds the component type as reference type, which is a bit confusing. How to deal with that?
Probably should have a method to get an Optional<ArrayType> and one where it just throws
The text was updated successfully, but these errors were encountered:
In
ArrayUtils
most code is based on determining the array component type of theObject
and then doing something with it—this can actually be useful for outside callers, too.Optional<ArrayType>
and one where it just throwsThe text was updated successfully, but these errors were encountered: