Giter Club home page Giter Club logo

jlwcv's Introduction

Java Lightweight Collection Views (JLWCV)

The JLWCV library consists of a set of wrappers for the java.util.Collection and java.util.Map interfaces, as well as most of their sub-interfaces. These wrappers delegate any non-modifying method calls to the underlying collection. When a modification is attempted a ViewMutationAttemptException is thrown. The underlying collection can still be modified with the original instance and the view will reflect any changes.

Usage

// Populate a normal Java list
List<String> mutableList = new ArrayList<>();
mutableList.add("Test #1");
mutableList.add("Test #2");

// Create a view
ListView<String> listView = new ListView<>(mutableList);

// This prints the first two entries
System.out.println(listView.get(0));
System.out.println(listView.get(1));

// Trying to modify the list results in a ViewMutationAttemptException
listView.add("This won't work");

Installation

You can obtain pre-built JARs in the Releases tab or clone the repository and compile it yourself.

Alternatively you can add it as a Maven dependency. Note: The Maven dependency is a 'fake' dependency which uses JitPack to fetch the git repository and use it. Because of this you have to add a custom repository to your POM.

<dependency>
    <groupId>com.github.Fylipp</groupId>
    <artifactId>jlwcv</artifactId>
    <version>v2.0.0</version>
</dependency>
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

License

jlwcv is published under the MIT License. The license can be found in the LICENSE file.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.