Snippets tagged “enums”
3 snippets use this tag.
- Comparing Java enum members: == or equals()?Java
In Java, it is generally recommended to use the equals() method to compare enum members, rather than the == operator.
- Enumerations on PHPPHP
In PHP, an enumeration is a value that is set to a fixed set of values.
- Using Enum values as String literalsJava
To use the values of an enum as string literals in Java, you can use the name() method of the Enum class. This method returns the name of the enum value as a string.