5354555657585960616263
return SimpleURType.theInstance; } protected boolean checkFormat( String content, ValidationContext context ) { try { new BigTimeDurationValueType(content); return true; } catch( IllegalArgumentException e ) { return false; } }
62636465666768697071
} } public Object _createValue( String content, ValidationContext context ) { try { return new BigTimeDurationValueType(content); } catch( IllegalArgumentException e ) { return null; } }