Package org.mvel2.integration
Class PropertyHandlerFactory
- java.lang.Object
-
- org.mvel2.integration.PropertyHandlerFactory
-
public class PropertyHandlerFactory extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected static PropertyHandlernullMethodHandlerprotected static PropertyHandlernullPropertyHandlerprotected static Map<Class,PropertyHandler>propertyHandlerClass
-
Constructor Summary
Constructors Constructor Description PropertyHandlerFactory()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voiddisposeAll()static PropertyHandlergetNullMethodHandler()static PropertyHandlergetNullPropertyHandler()static PropertyHandlergetPropertyHandler(Class clazz)static booleanhasNullMethodHandler()static booleanhasNullPropertyHandler()static booleanhasPropertyHandler(Class clazz)static voidregisterPropertyHandler(Class clazz, PropertyHandler propertyHandler)static voidsetNullMethodHandler(PropertyHandler handler)static voidsetNullPropertyHandler(PropertyHandler handler)static voidunregisterPropertyHandler(Class clazz)
-
-
-
Field Detail
-
propertyHandlerClass
protected static Map<Class,PropertyHandler> propertyHandlerClass
-
nullPropertyHandler
protected static PropertyHandler nullPropertyHandler
-
nullMethodHandler
protected static PropertyHandler nullMethodHandler
-
-
Method Detail
-
getPropertyHandler
public static PropertyHandler getPropertyHandler(Class clazz)
-
hasPropertyHandler
public static boolean hasPropertyHandler(Class clazz)
-
registerPropertyHandler
public static void registerPropertyHandler(Class clazz, PropertyHandler propertyHandler)
-
setNullPropertyHandler
public static void setNullPropertyHandler(PropertyHandler handler)
-
hasNullPropertyHandler
public static boolean hasNullPropertyHandler()
-
getNullPropertyHandler
public static PropertyHandler getNullPropertyHandler()
-
setNullMethodHandler
public static void setNullMethodHandler(PropertyHandler handler)
-
hasNullMethodHandler
public static boolean hasNullMethodHandler()
-
getNullMethodHandler
public static PropertyHandler getNullMethodHandler()
-
unregisterPropertyHandler
public static void unregisterPropertyHandler(Class clazz)
-
disposeAll
public static void disposeAll()
-
-