Java String Quote quoteOutputName(String name)

Here you can find the source of quoteOutputName(String name)

Description

Returns a quoted name for StageOutput .

License

Apache License

Parameter

Parameter Description
name the output name

Return

the processed name

Declaration

public static String quoteOutputName(String name) 

Method Source Code

//package com.java2s;
/**//from   www.  j ava  2  s.co  m
 * Copyright 2011-2017 Asakusa Framework Team.
 *
 * 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 {
    /**
     * Returns a quoted name for {@link StageOutput}.
     * @param name the output name
     * @return the processed name
     */
    public static String quoteOutputName(String name) {
        StringBuilder buf = new StringBuilder();
        for (char c : name.toCharArray()) {
            // 0 as escape character
            if ('1' <= c && c <= '9' || 'A' <= c && c <= 'Z' || 'a' <= c
                    && c <= 'z') {
                buf.append(c);
            } else if (c <= 0xff) {
                buf.append('0');
                buf.append(String.format("%02x", (int) c)); //$NON-NLS-1$
            } else {
                buf.append("0u"); //$NON-NLS-1$
                buf.append(String.format("%04x", (int) c)); //$NON-NLS-1$
            }
        }
        return buf.toString();
    }
}

Related

  1. quoteMonetDbValue(String value)
  2. quoteNameIfNecessary(String name)
  3. quoteNcName(String ncName)
  4. quotEncode(String txt)
  5. quotEncode(String txt)
  6. quoteParameter(String param)
  7. quotePath(String path)
  8. quotePattern(String pattern)
  9. quotePattern(String s)