'; case LEFT_SQUARE_BRACKET = '['; case RIGHT_SQUARE_BRACKET = ']'; case LEFT_CURLY_BRACKET = '{'; case RIGHT_CURLY_BRACKET = '}'; case SOLIDUS = '/'; /** * Any occurrence of the PERCENT SIGN outside a string or stream introduces a comment. The comment * consists of all characters after the PERCENT SIGN and up to but not including the end of the line, including * regular, delimiter, SPACE (20h), and HORIZONTAL TAB characters (09h). A conforming reader shall ignore * comments, and treat them as single white-space characters. That is, a comment separates the token preceding * it from the one following it. * * Comments (other than the %PDF–n.m and %%EOF comments described in 7.5, "File Structure") have no * semantics. They are not necessarily preserved by applications that edit PDF files */ case PERCENT_SIGN = '%'; }