1511151215131514151515161517
public void registerUDF(String key, UDF udf) { registerUDF(KeyImpl.init(key), (UDFPlus) udf,useShadow,false); } public void registerUDF(String key, UDFProperties prop) { registerUDF(KeyImpl.init(key), new UDFImpl( prop),useShadow,false); }
1518151915201521152215231524
public void registerUDF(Collection.Key key, UDF udf) { registerUDF(key, (UDFPlus) udf,useShadow,false); } public void registerUDF(Collection.Key key, UDFProperties prop) { registerUDF(key, new UDFImpl( prop),useShadow,false); }
175176177178179180181
udfs.put(key,udf); interfacesUDFs.put(key, udf); } public void registerUDF(String key, UDFProperties props) { registerUDF(key, new UDFImpl(props)); }
179180181182183184185
public void registerUDF(String key, UDFProperties props) { registerUDF(key, new UDFImpl(props)); } public void registerUDF(Collection.Key key, UDFProperties props) { registerUDF(key, new UDFImpl(props)); }