1415161718192021222324
String value = stringify(objValue); try { int intValue = Integer.parseInt(value); if(0 <= intValue && intValue <= 360) return new SimpleDegreesValue(intValue); else throw makeError(value); } catch(Exception e) {