Interface MonitorUserDocument.IMonitorStringField

  • Enclosing class:
    MonitorUserDocument

    public static interface MonitorUserDocument.IMonitorStringField
    Contains data in a MonitorUserDocument that corresponds to string versions.
    Since:
    11.0.0
    Version:
    $Revision: 25809 $ $Date: 2023-07-04 15:23:22 -0300 (Tue, 04 Jul 2023) $
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getAnalyzed()
      Returns the value of analyzed token version of the string stored in this document.
      java.lang.String getNormalizedToken()
      Returns the value of normalized token version of the string stored in this document.
      java.lang.String getReversedNormalizedToken()
      Returns the value of reversed normalized token version of the string stored in this document.
      java.lang.String getToken()
      Returns the value of token version of the string stored in this document.
      void setAnalyzed​(java.lang.String analyzed)
      Sets the value for analyzed token version of the string in this document.
      void setNormalizedToken​(java.lang.String normalizedToken)
      Sets the value for normalized token version of the string in this document.
      void setReversedNormalizedToken​(java.lang.String reversedNormalizedToken)
      Sets the value for reversed normalized token version of the string in this document.
      void setToken​(java.lang.String token)
      Sets the value for token version of the string in this document.
    • Method Detail

      • getNormalizedToken

        java.lang.String getNormalizedToken()
        Returns the value of normalized token version of the string stored in this document.
        Returns:
        the value of normalized token version of the string.
        Since:
        11.0.0
      • setNormalizedToken

        void setNormalizedToken​(java.lang.String normalizedToken)
        Sets the value for normalized token version of the string in this document.
        Parameters:
        normalizedToken - the normalized token version of the string.
        Since:
        11.0.0
      • getAnalyzed

        java.lang.String getAnalyzed()
        Returns the value of analyzed token version of the string stored in this document.
        Returns:
        the value of analyzed token version of the string.
        Since:
        11.0.0
      • setAnalyzed

        void setAnalyzed​(java.lang.String analyzed)
        Sets the value for analyzed token version of the string in this document.
        Parameters:
        analyzed - the analyzed token version of the string.
        Since:
        11.0.0
      • getReversedNormalizedToken

        java.lang.String getReversedNormalizedToken()
        Returns the value of reversed normalized token version of the string stored in this document.
        Returns:
        the value of reversed normalized token version of the string.
        Since:
        11.0.0
      • setReversedNormalizedToken

        void setReversedNormalizedToken​(java.lang.String reversedNormalizedToken)
        Sets the value for reversed normalized token version of the string in this document.
        Parameters:
        reversedNormalizedToken - the reversed normalized token version of the string.
        Since:
        11.0.0
      • getToken

        java.lang.String getToken()
        Returns the value of token version of the string stored in this document.
        Returns:
        the value of token version of the string.
        Since:
        11.0.0
      • setToken

        void setToken​(java.lang.String token)
        Sets the value for token version of the string in this document.
        Parameters:
        token - the token version of the string.
        Since:
        11.0.0