The method endsWith() is a convenience method that checks if a String ends with another given String. If the argument is an empty String, then the method returns true.
Available Signatures
public boolean endsWith(String suffix)
Example
@Test
public void whenCallEndsWith_thenCorrect() {
String s1 = "test";
assertTrue(s1.endsWith("t"));
}
« Previous
Java String.copyValueOf()