Reports the value of @DefaultValue if it cannot be converted to the specified type of parameter.
@DefaultValue
Example:
@GET @Path("/{n}") public String get(@PathParam("n") @DefaultValue("III") int n) { // Error: Cannot convert 'III' to int }