Interface StringFilterMatchMode


public interface StringFilterMatchMode
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    The search string and
    text must match exactly.
    static final int
    The text must begin
    with the search string.
    static final int
    The search string
    must be contained as a substring inside the text.
  • Field Details

    • EXACT

      static final int EXACT
      The search string and
      text must match exactly.
      See Also:
    • SUBSTRING

      static final int SUBSTRING
      The search string
      must be contained as a substring inside the text.
      See Also:
    • PREFIX

      static final int PREFIX
      The text must begin
      with the search string.
      See Also: