Class ListOptions

java.lang.Object
org.apache.opendal.ListOptions

public class ListOptions extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final boolean
    The deleted is used to control whether the deleted objects should be returned.
    final long
    The limit passed to underlying service to specify the max results that could return per-request.
    final boolean
    Return files in subdirectory as well.
    final String
    The startAfter option passes to underlying service to specify the specified key to start listing from.
    final boolean
    The versions option is used to control whether the object versions should be returned.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

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

    • recursive

      public final boolean recursive
      Return files in subdirectory as well.
    • limit

      public final long limit
      The limit passed to underlying service to specify the max results that could return per-request.
      See Also:
    • startAfter

      public final String startAfter
      The startAfter option passes to underlying service to specify the specified key to start listing from.
    • versions

      public final boolean versions
      The versions option is used to control whether the object versions should be returned.
    • deleted

      public final boolean deleted
      The deleted is used to control whether the deleted objects should be returned.
  • Constructor Details

    • ListOptions

      public ListOptions()