mlopatkin / andlogview

Tool for viewing application logs from Android devices.
https://andlogview.mlopatkin.name/
Apache License 2.0
42 stars 6 forks source link

Increase type safety of Field class #376

Closed mlopatkin closed 4 months ago

mlopatkin commented 4 months ago

Java enum cannot have subtypes as its constants or be a generic, but this is somewhat desirable for the Field constants. This commit rewrites the enum into a pre-Java-5 style class-with-constants implementation to achieve the necessary type safety. Not that it is strictly necessary...

Issue: n/a