blob: f7c70c641cccd30dc3a9939e199612ca485142e6 [file] [log] [blame]
package xmlobject.usertype.multipleItems.existing;
import org.apache.xmlbeans.SimpleValue;
import org.apache.xmlbeans.impl.values.XmlValueOutOfRangeException;
public class RoomHandler
{
public static void encodeRoom(Room obj, SimpleValue target)
{
String digits;
if (obj.getDigits() < 10)
digits = "00" + Integer.toString(obj.getDigits());
else if (obj.getDigits() < 100)
digits = "0" + Integer.toString(obj.getDigits());
else
digits = Integer.toString(obj.getDigits());
target.setStringValue(digits + "-" + obj.getLetters());
}
public static Room decodeRoom(SimpleValue obj) throws XmlValueOutOfRangeException
{
String encoded = obj.getStringValue();
if (encoded.length() != 6)
throw new XmlValueOutOfRangeException("Invalid Room format: " + encoded);
Room sku = new Room();
try
{
sku.setDigits(Integer.parseInt(encoded.substring(0,3)));
} catch (NumberFormatException e) {
throw new XmlValueOutOfRangeException("Invalid Room format: " + encoded);
} catch (IllegalArgumentException e) {
throw new XmlValueOutOfRangeException("Invalid Room format: " + encoded);
}
sku.setLetters(encoded.substring(4,6));
return sku;
}
}