Module io.jooby
Package io.jooby

Interface QueryString

All Superinterfaces:
Iterable<ValueNode>, Value, ValueNode

public interface QueryString extends ValueNode
Query string class for direct MVC parameter provisioning.
Since:
2.0.0
Author:
edgar
  • Method Details

    • queryString

      @NonNull String queryString()
      Query string with the leading ? or empty string.
      Returns:
      Query string with the leading ? or empty string.
    • create

      @NonNull static QueryString create(@NonNull Context ctx, @Nullable String queryString)
      Query string hash value.
      q=foo&sort=name
      Produces:
      {q: foo, sort: name}
      Parameters:
      ctx - Current context.
      queryString - Query string.
      Returns:
      A query string.