Java Type Convert typeToFilename(String var)

Here you can find the source of typeToFilename(String var)

Description

Converts type names to file names, substitutes ":" for "_"

License

Apache License

Parameter

Parameter Description
var the type name

Return

the file name

Declaration

public static String typeToFilename(String var) 

Method Source Code

//package com.java2s;
/*/* w w  w  .j a v  a  2 s  .  co m*/
 *  Copyright 2011 The IMPACT Project Consortium.
 *
 *  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.
 *  under the License.
 */

public class Main {
    /**
     * Converts type names to file names, substitutes ":" for "_"
     * @param var the type name
     * @return the file name
     */
    public static String typeToFilename(String var) {
        return var.replaceAll(":", "_").toLowerCase();
    }
}

Related

  1. typeToClass(Class type)
  2. typeToHex(byte buffer[])
  3. typeToInt(String type)
  4. typeToJavaCode(Class type)
  5. typeToSignature(String className)