clearInterfaceName method
clears prefix I from interfaces
Implementation
String clearInterfaceName() {
if (this[0] == "I" || this[0] == "i") {
return substring(1);
}
return this;
}
clears prefix I from interfaces
String clearInterfaceName() {
if (this[0] == "I" || this[0] == "i") {
return substring(1);
}
return this;
}