Java Class Simple Name Get simpleName(String type)

Here you can find the source of simpleName(String type)

Description

simple Name

License

Open Source License

Declaration

public static String simpleName(String type) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010 Oobium, Inc.// w  w  w  .j a v  a2 s  .  c  om
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Jeremy Dowdall <jeremy@oobium.com> - initial API and implementation
 ******************************************************************************/

public class Main {
    public static String simpleName(String type) {
        int ix = type.lastIndexOf('.');
        if (ix == -1) {
            return type;
        }
        return type.substring(ix + 1);
    }
}

Related

  1. simpleName(Object obj)
  2. simpleName(String className)
  3. simpleName(String componentName)
  4. simpleName(String qualifiedClassName)
  5. simpleName(String qualifiedName)
  6. simpleNameFromQualifiedName(String qualifiedName)
  7. simpleNameOf(String s)
  8. simpleNameWithoutEnhance(Class clazz)
  9. toSimpleName(Class type)