Here you can find the source of startsWithName(String subject, String beginName)
Parameter | Description |
---|---|
subject | A string. |
beginName | A name. |
Parameter | Description |
---|---|
NullPointerException | if subject or beginName is null. |
public static boolean startsWithName(String subject, String beginName)
//package com.java2s; /*/*from w ww.j av a2 s . co 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 beginName A name. * @return True if subject starts with the specified name, * i.e. always name is empty, else if name equals it, * or starts with it followed by '.' or '$'. * @throws NullPointerException if subject or beginName is null. */ public static boolean startsWithName(String subject, String beginName) { // Implicit null checks. if (!subject.startsWith(beginName)) { return false; } if (beginName.length() == 0) { // Anything matches. return true; } if (subject.length() == beginName.length()) { // Equals. return true; } final char afterBeginNameChar = subject.charAt(beginName.length()); return (afterBeginNameChar == CHAR_DOT) || (afterBeginNameChar == CHAR_DOLLAR); } }