public static Resumed resumed(XmlPullParser parser) throws XmlPullParserException, IOException { ParserUtils.assertAtStartTag(parser); long h = ParserUtils.getLongAttribute(parser, "h"); String previd = parser.getAttributeValue("", "previd"); parser.next(); ParserUtils.assertAtEndTag(parser); return new Resumed(h, previd); }