Enum methods thread-safety
There is a notion that “singleton implementation of enum is thread-safe by default” which I found in this article.
If that is the case then does this mean that any method which I write myself inside of this enum singleton class is thread-safe as well without the need to use any additional keywords/logic to make it thread-safe?