CommonsのStringUtils.endsWithを使用する。
/**
* 後方一致で文字を検索します。
*
* @param subject
* 検索対象
* @param suffix
* 検索する文字
* @return boolean
*/
public static boolean strEndsWith(String subject, String suffix) {
return StringUtils.endsWith(subject, suffix);
}