Interface PropertyLookup<T>

All Known Implementing Classes:
MimeTypePropertyLookup, PersonPropertyLookup

public interface PropertyLookup<T>
Looks up property values for the api
Author:
Gethin James
  • Method Summary

    Modifier and Type
    Method
    Description
    lookup(String propertyValue)
    Lookup the property value with a new value.
    The list of property keys that are supported by this class
  • Method Details

    • supports

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

      T lookup(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.