Here you can find the source of endsWithName(String subject, String endName)
Parameter | Description |
---|---|
subject | A string. |
endName | A name. |
Parameter | Description |
---|---|
NullPointerException | if subject or endName is null. |
public static boolean endsWithName(String subject, String endName)
//package com.java2s; /*/* ww w . ja v a2 s.c o m*/ * Copyright 2015-2016 Jeff Hain * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ public class Main { private static final char CHAR_DOT = '.'; private static final char CHAR_DOLLAR = '$'; /** * @param subject A string. * @param endName A name. * @return True if subject ends with the specified name, * i.e. always name is empty, else if name equals it, * or ends with it preceded by '.' or '$'. * @throws NullPointerException if subject or endName is null. */ public static boolean endsWithName(String subject, String endName) { // Implicit null checks. if (!subject.endsWith(endName)) { return false; } if (endName.length() == 0) { // Anything matches. return true; } final int deltaLength = subject.length() - endName.length(); if (deltaLength == 0) { // Equals. return true; } final char beforeEndNameChar = subject.charAt(deltaLength - 1); return (beforeEndNameChar == CHAR_DOT) || (beforeEndNameChar == CHAR_DOLLAR); } }