Due ADC Interrupt

Is there a way to attachInterrupt() to the completion of the ADC conversion for the Due? What is the name of the interrupt, where are these things defined?

Thanks in advance

void ADC_Handler (void)
{
if((adc_get_status(ADC) & ADC_ISR_RXBUFF) == ADC_ISR_RXBUFF) {

I found my answer after digging through forum.

The ADC is much much faster on the Due than other boards, you just wait the microsecond or two it takes!