final
Example:
enum Enum { FIRST("first"), SECOND("second"); public String str; Enum(String str) { this.str = str; } }