Java String Shorten shortenType(String typeText)

Here you can find the source of shortenType(String typeText)

Description

shorten Type

License

Apache License

Declaration

public static String shortenType(String typeText) 

Method Source Code

//package com.java2s;
/*/*  w  w w  .j ava  2  s .c  om*/
 * Copyright 2000-2013 JetBrains s.r.o.
 *
 * 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 {
    public static String shortenType(String typeText) {
        if (typeText == null)
            return "";
        final int i = typeText.lastIndexOf(".");
        if (i != -1) {
            return typeText.substring(i + 1);
        }
        return typeText;
    }
}

Related

  1. shortenText(String originalText, int maxlength)
  2. shortenText(String string, int threshold)
  3. shortenTo(final String value, final int maxLength)
  4. shortenTo(String string, int lenght)
  5. shortenToFirstLast(String filename)
  6. shortenURI(String uri)
  7. shortenUrl(String protocolHostPart, String pathPart, String queryPart, String fragmentIdentifier)
  8. ShortenVector(double[] vector, int new_length)
  9. shortenXPathForPropertyExpansion(String xpath, String value)