Class ListTablesOptions

java.lang.Object
com.azure.data.tables.models.ListTablesOptions

public final class ListTablesOptions extends Object
Options to modify the data returned from the listTables family of methods.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the value of the `filter` OData query option which filters the set of returned entities, excluding those that do not match the filter expression.
    Gets the value of the `top` OData query option which limits the number of returned entities.
    setFilter(String filter)
    Sets the value of the `filter` OData query option which filters the set of returned entities, excluding those that do not match the filter expression.
    Sets the value of the `top` OData query option which limits the number of returned entities.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ListTablesOptions

      public ListTablesOptions()
  • Method Details

    • getTop

      public Integer getTop()
      Gets the value of the `top` OData query option which limits the number of returned entities.
      Returns:
      The value of the `top` OData query option.
    • setTop

      public ListTablesOptions setTop(Integer top)
      Sets the value of the `top` OData query option which limits the number of returned entities.
      Parameters:
      top - The value of the `top` OData query option.
      Returns:
      The updated ListTablesOptions.
    • getFilter

      public String getFilter()
      Gets the value of the `filter` OData query option which filters the set of returned entities, excluding those that do not match the filter expression.
      Returns:
      The value of the `filter` OData query option.
    • setFilter

      public ListTablesOptions setFilter(String filter)
      Sets the value of the `filter` OData query option which filters the set of returned entities, excluding those that do not match the filter expression.
      Parameters:
      filter - The value of the `filter` OData query option.
      Returns:
      The updated ListTablesOptions.