From d639a9b43723053d63756fd4a63b50316a8a0e05 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Sat, 6 Jul 2013 14:08:33 +0000 Subject: [PATCH] Remove references to removed Buffer interface. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1500270 13f79535-47bb-0310-9956-ffa450edef68 --- src/site/xdoc/userguide.xml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/site/xdoc/userguide.xml b/src/site/xdoc/userguide.xml index 544d64a17..862a8b9e9 100644 --- a/src/site/xdoc/userguide.xml +++ b/src/site/xdoc/userguide.xml @@ -40,7 +40,6 @@ This document highlights some key features to get you started.
  • Bidirectional Maps
  • -
  • Queues and Buffers
  • Bags
  • @@ -141,26 +140,6 @@ Implementations are provided for each bidirectional map type. -
    - -

    -A new interface hierarchy has been added to support queues and buffers - Buffer. -These represent collections that have a well defined removal order. -

    - -Buffer buffer = new UnboundedFifoBuffer(); -buffer.add("ONE"); -buffer.add("TWO"); -buffer.add("THREE"); -buffer.remove(); // removes and returns the next in order, "ONE" as this is a FIFO -buffer.remove(); // removes and returns the next in order, "TWO" as this is a FIFO - -

    -Implementations are provided for FIFO (queue), LIFO (stack) and Priority (removal in comparator order). -

    - -
    -