/* * Copyright (C) 2009 The Guava Authors * * 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. */ package com.google.common.escape; import java.util.HashMap; import java.util.Map; /** * A factory for Escaper instances used to escape strings for safe use in Java. * *
This is a subset of source code escapers that are in the process of being open-sources as part * of guava, see: https://github.com/google/guava/issues/1620 */ // TODO(cushon): migrate to the guava version once it is open-sourced, and delete this public final class SourceCodeEscapers { private SourceCodeEscapers() {} // For each xxxEscaper() method, please add links to external reference pages // that are considered authoritative for the behavior of that escaper. // From: http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters private static final char PRINTABLE_ASCII_MIN = 0x20; // ' ' private static final char PRINTABLE_ASCII_MAX = 0x7E; // '~' private static final char[] HEX_DIGITS = "0123456789abcdef".toCharArray(); /** * Returns an {@link Escaper} instance that escapes special characters in a string so it can * safely be included in either a Java character literal or string literal. This is the preferred * way to escape Java characters for use in String or character literals. * *
See: The Java Language Specification for more details.
*/
public static CharEscaper javaCharEscaper() {
return JAVA_CHAR_ESCAPER;
}
private static final CharEscaper JAVA_CHAR_ESCAPER;
static {
Map