Table Valued Parameter (TVP) in Jdbc Java

It seems Jdbc driver doesn't have any direct support for TVP even in its latest version. Refer: 

TVP comes with great features & benefits which superced its all previous colleagues of parameter types. Refer: http://msdn.microsoft.com/en-us/library/bb510489.aspx#Benefits

TVP has been widely covered by Microsoft SQL Server MVP Erland in his post here : http://www.sommarskog.se/arrays-in-sql-2008.html
In this post he coveres "Using Table-Valued Parameters from Other APIs" which is read worthy.

However TVP can be used at MS SQL Server and implemented in Java using Jdbc Array OR using third party dll/frameworks, which is precisely not suggested over old fashion i.e. XML parameter type.