707708709710711712713714
{ return XsTypeConverter.lexQName(cs, _xmlStream.getNamespaceContext()); } catch (InvalidLexicalValueException e) { throw new InvalidLexicalValueException(e.getMessage(), _charSeq.getLocation()); } }
8788899091929394
{ return XsTypeConverter.lexBoolean(_charSeq); } catch(InvalidLexicalValueException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
101102103104105106107108
{ return XsTypeConverter.lexByte(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
115116117118119120121122
{ return XsTypeConverter.lexShort(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
129130131132133134135136
{ return XsTypeConverter.lexInt(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
143144145146147148149150
{ return XsTypeConverter.lexLong(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
157158159160161162163164
{ return XsTypeConverter.lexInteger(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
171172173174175176177178
{ return XsTypeConverter.lexDecimal(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
185186187188189190191192
{ return XsTypeConverter.lexFloat(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }
199200201202203204205206
{ return XsTypeConverter.lexDouble(_charSeq); } catch(NumberFormatException e) { throw new InvalidLexicalValueException(e, _charSeq.getLocation()); } }