Interface QuerySerializable

All Known Implementing Classes:
StructuredQuery

public interface QuerySerializable
A serializable query interface to serve an encoded and not-encoded String representation.
  • Method Summary

    Modifier and Type
    Method
    Description
    Compute the encoded string representation of this query.
    Compute the string representation of this query.
  • Method Details

    • getEncodedQueryString

      @Nonnull String getEncodedQueryString()
      Compute the encoded string representation of this query. All characters except the ones listed in ODataUriFactory#SAFE_CHARS_IN_QUERY are encoded
      Returns:
      A string representing the encoded request query.
    • getQueryString

      @Nonnull String getQueryString()
      Compute the string representation of this query.
      Returns:
      A string representing the request query.