Class StringEnumPropertyHandler

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object apply​(java.lang.Class<?> parameter, java.lang.Object value)
      Stores the given value into an instance of type parameter.
      boolean match​(java.lang.Class<?> parameter, java.lang.Object value)
      Tests whether to handle setting value into an instance of parameter.
      • Methods inherited from class java.lang.Object

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

      • StringEnumPropertyHandler

        public StringEnumPropertyHandler()
    • Method Detail

      • apply

        public java.lang.Object apply​(java.lang.Class<?> parameter,
                                      java.lang.Object value)
        Description copied from interface: PropertyHandler
        Stores the given value into an instance of type parameter. This method is only called if PropertyHandler.match(Class, Object) return true.
        Specified by:
        apply in interface PropertyHandler
        Parameters:
        parameter - The type of the target parameter.
        value - The value to set.
        Returns:
        The converted value or the original value if something doesn't work out.
      • match

        public boolean match​(java.lang.Class<?> parameter,
                             java.lang.Object value)
        Description copied from interface: PropertyHandler
        Tests whether to handle setting value into an instance of parameter.
        Specified by:
        match in interface PropertyHandler
        Parameters:
        parameter - The type of the target parameter.
        value - The value to be set.
        Returns:
        true is this property handler can/wants to handle this value; false otherwise.