1 38 39 package org.jvnet.fastinfoset; 40 41 public final class RestrictedAlphabet { 42 43 public static final String NUMERIC_CHARACTERS = "0123456789-+.E "; 44 45 public static final int NUMERIC_CHARACTERS_INDEX = 0; 46 47 public static final String DATE_TIME_CHARACTERS = "0123456789-:TZ "; 48 49 public static final int DATE_TIME_CHARACTERS_INDEX = 1; 50 51 } 52 | Popular Tags |