Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Unterrainer committed Jul 12, 2021
2 parents 862dab1 + e8606e6 commit cea1e70
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

import lombok.NoArgsConstructor;

/**
* A synchronized, size-limited hash-map.
*/
@NoArgsConstructor
public class DataMap<K, V> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@

import org.apache.commons.collections4.queue.CircularFifoQueue;

/**
* A synchronized, size-limited FIFO-queue.
*/
public class DataQueue<T> {

private CircularFifoQueue<T> queue;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
import lombok.Getter;
import lombok.experimental.Accessors;

/**
* A synchronized data-structure acting as a table. You may create indexes for
* various columns of this table.
*/
@Accessors(fluent = true)
public class DataTable<T> {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package info.unterrainer.commons.jreutils.collections;


import java.util.LinkedHashMap;
import java.util.Map;

/**
* A size-limited hash-map.
*/
public class SizeLimitedHashMap<K, V> extends LinkedHashMap<K, V> {
private static final long serialVersionUID = 6994714918898609875L;

Expand Down

0 comments on commit cea1e70

Please sign in to comment.