Index: docs/xdocs/udf/reflect.xml
===================================================================
--- docs/xdocs/udf/reflect.xml (revision 0)
+++ docs/xdocs/udf/reflect.xml (revision 0)
@@ -0,0 +1,51 @@
+
+
+
+ A java class and method often exists to handle the exact function a user would like to use in hive. Rather
+then having to write a wrapper UDF to call this method, the majority of these methods can be called using reflect udf. Reflect uses
+java reflection to instantiate and call methods of objects, it can also call static functions. The method must return a primative type
+or a type that hive knows how to serialize.
+