1 38 39 40 package com.sun.xml.fastinfoset.alphabet; 41 42 import com.sun.xml.fastinfoset.EncodingConstants; 43 import org.jvnet.fastinfoset.RestrictedAlphabet; 44 45 public final class BuiltInRestrictedAlphabets { 46 public final static char[][] table = 47 new char[EncodingConstants.RESTRICTED_ALPHABET_BUILTIN_END + 1][]; 48 49 static { 50 table[RestrictedAlphabet.NUMERIC_CHARACTERS_INDEX] = RestrictedAlphabet.NUMERIC_CHARACTERS.toCharArray(); 51 table[RestrictedAlphabet.DATE_TIME_CHARACTERS_INDEX] = RestrictedAlphabet.DATE_TIME_CHARACTERS.toCharArray(); 52 } 53 } 54 | Popular Tags |