Interface TypeLookup<T>


  • public interface TypeLookup<T>
    • Method Detail

      • isAvailable

        default boolean isAvailable()
        Checks if the lookup is available.
        Returns:
        True if the lookup is available, false otherwise.
      • forName

        Optional<T> forName​(String fullyQualifiedName)
        Performs a lookup for the specified fqcn.
        Parameters:
        fullyQualifiedName - The specified fqcn.
        Returns:
        The specified type if found, empty otherwise.