public int parse()

in java/main/src/main/java/com/epam/deltix/hdtime/Parsers.java [157:164]


        public int parse(CharSequence from, int ofs, ParsedValue dst) throws ParseException {
            int n = str.length();
            for (int i = 0; i < n; ++i)
                if (from.charAt(ofs + i) != str.charAt(i))
                    throw new ParseException(from.toString(), ofs + i);

            return n + ofs;
        }