Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Interface IResourceLoader

    Abstraction for loading resources (streams, files, and classes).

    Namespace: Lucene.Net.Analysis.Util
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public interface IResourceLoader

    Methods

    FindType(string)

    Finds class of the name

    NOTE: This was findClass() in Lucene
    Declaration
    Type FindType(string cname)
    Parameters
    Type Name Description
    string cname
    Returns
    Type Description
    Type

    NewInstance<T>(string)

    Creates an instance of the name and expected type

    Declaration
    T NewInstance<T>(string cname)
    Parameters
    Type Name Description
    string cname
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T

    OpenResource(string)

    Opens a named resource

    Declaration
    Stream OpenResource(string resource)
    Parameters
    Type Name Description
    string resource
    Returns
    Type Description
    Stream
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.