Class PropertyEditors


  • @Deprecated
    public class PropertyEditors
    extends java.lang.Object
    Deprecated.
    The property editor manager. This orchestrates Geronimo usage of property editors, allowing additional search paths to be added and specific editors to be registered.
    Version:
    $Rev: 6687 $
    • Constructor Summary

      Constructors 
      Constructor Description
      PropertyEditors()
      Deprecated.
       
    • Method Summary

      All Methods Static Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      static boolean canConvert​(java.lang.Class<?> type)
      Deprecated.
       
      static boolean canConvert​(java.lang.String type, java.lang.ClassLoader classLoader)
      Deprecated.
       
      static java.lang.Object getValue​(java.lang.reflect.Type type, java.lang.String value)
      Deprecated.
       
      static java.lang.Object getValue​(java.lang.String type, java.lang.String value, java.lang.ClassLoader classLoader)
      Deprecated.
       
      static boolean isRegisterWithVM()
      Deprecated.
      Are converters registered with the VM PropertyEditorManager.
      static void registerConverter​(Converter converter)
      Deprecated.
       
      static PropertyEditorRegistry registry()
      Deprecated.
       
      static void setRegisterWithVM​(boolean registerWithVM)
      Deprecated.
      Sets if converters registered with the VM PropertyEditorManager.
      static java.lang.String toString​(java.lang.Object value)
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • registerWithVM

        private static boolean registerWithVM
        Deprecated.
    • Constructor Detail

      • PropertyEditors

        public PropertyEditors()
        Deprecated.
    • Method Detail

      • isRegisterWithVM

        public static boolean isRegisterWithVM()
        Deprecated.
        Are converters registered with the VM PropertyEditorManager. By default converters are not registered with the VM as this creates problems for IDE and Spring because they rely in their specific converters being registered to function properly.
      • setRegisterWithVM

        public static void setRegisterWithVM​(boolean registerWithVM)
        Deprecated.
        Sets if converters registered with the VM PropertyEditorManager. If the new value is true, all currently registered converters are immediately registered with the VM.
      • registerConverter

        public static void registerConverter​(Converter converter)
        Deprecated.
      • canConvert

        public static boolean canConvert​(java.lang.String type,
                                         java.lang.ClassLoader classLoader)
        Deprecated.
      • canConvert

        public static boolean canConvert​(java.lang.Class<?> type)
        Deprecated.