Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class CharacterRunAutomaton

    Automaton representation for matching char[].

    Inheritance
    object
    RunAutomaton
    CharacterRunAutomaton
    Inherited Members
    RunAutomaton.m_accept
    RunAutomaton.m_initial
    RunAutomaton.m_transitions
    RunAutomaton.ToString()
    RunAutomaton.Count
    RunAutomaton.IsAccept(int)
    RunAutomaton.InitialState
    RunAutomaton.GetCharIntervals()
    RunAutomaton.Step(int, int)
    RunAutomaton.GetHashCode()
    RunAutomaton.Equals(object)
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Lucene.Net.Util.Automaton
    Assembly: Lucene.Net.dll
    Syntax
    public class CharacterRunAutomaton : RunAutomaton

    Constructors

    CharacterRunAutomaton(Automaton)

    Automaton representation for matching char[].

    Declaration
    public CharacterRunAutomaton(Automaton a)
    Parameters
    Type Name Description
    Automaton a

    Methods

    Run(char[], int, int)

    Returns true if the given string is accepted by this automaton.

    Declaration
    public virtual bool Run(char[] s, int offset, int length)
    Parameters
    Type Name Description
    char[] s
    int offset
    int length
    Returns
    Type Description
    bool

    Run(string)

    Returns true if the given string is accepted by this automaton.

    Declaration
    public virtual bool Run(string s)
    Parameters
    Type Name Description
    string s
    Returns
    Type Description
    bool
    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.