Interface TypeLookup<T>


public interface TypeLookup<T>
  • Method Details

    • lookup

      static Optional<TypeDef> lookup(String fullyQualifiedName, AdapterContextAware context)
    • 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.