Interface PropertyLookup<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T lookup​(java.lang.String propertyValue)
      Lookup the property value with a new value.
      java.util.Set<java.lang.String> supports()
      The list of property keys that are supported by this class
    • Method Detail

      • supports

        java.util.Set<java.lang.String> supports()
        The list of property keys that are supported by this class
        Returns:
        Set property keys
      • lookup

        T lookup​(java.lang.String propertyValue)
        Lookup the property value with a new value.
        Parameters:
        propertyValue -
        Returns:
        a new value or null if the property value isn't found.