#macro(print,$type) #set($string = "$type") #if($string.startsWith("class java.lang.")) #set($string = $string.substring(16)) #end $string #end #macro(cell,$type)$type#end #macro(check,$row,$col) #if($introspect.isStrictlyConvertible($row, $col)) #cell('strict') #elseif($introspect.isImplicitlyConvertible($row, $col)) #cell('implicit') #elseif($introspect.isExplicitlyConvertible($row, $col)) #cell('explicit') #else #cell('none') #end #end #foreach($col in $types) #end #foreach($row in $types) #foreach($col in $types) #end #if($row.isPrimitive()) #else #end #end
provided →
expected ↓
#print($col)null
#print($row)#check($row,$col)#cell('none')#check($row, $null)