clearEnumName method
clears prefix E from enums
Implementation
String clearEnumName() {
if (this[0] == "E" || this[0] == "e") {
return substring(1);
}
return this;
}
clears prefix E from enums
String clearEnumName() {
if (this[0] == "E" || this[0] == "e") {
return substring(1);
}
return this;
}