ctor for UnsignedShortexceptionNumberFormatException will be thrown if validation fails setValue(sValue);
setValue(sValue);
setValue(Long.parseLong(sValue));
validate the value against the xsd definition if ( (sValue < 0L ) || (sValue > 65535L) ) return false; else return true;
if ( (sValue < 0L ) || (sValue > 65535L) ) return false; else return true;
validates the data and sets the value for the object.paramsValue value if (UnsignedShort.isValid(sValue) == false) throw new NumberFormatException( Messages.getMessage("badUnsignedShort00") + String.valueOf(sValue) + "]"); lValue = new Long(sValue);
if (UnsignedShort.isValid(sValue) == false) throw new NumberFormatException( Messages.getMessage("badUnsignedShort00") + String.valueOf(sValue) + "]"); lValue = new Long(sValue);