Coder Social home page Coder Social logo

Sort about sortabletableview HOT 2 CLOSED

ischwarz23 avatar ischwarz23 commented on July 17, 2024
Sort

from sortabletableview.

Comments (2)

ISchwarz23 avatar ISchwarz23 commented on July 17, 2024

Hi Ruslan,

I would like to start with an explanation about the concept how this library was intended to be used :)

  1. the code you have posted is a SortStateViewProvider which is responsible of giving a "image" that shall be shown for a certain SortState in the column header e.g. an arrow up for SortState.SORTED_ASC.
  2. The algorithm that is used for sorting the items of the table is fixed and can not be changed. I used the sort algorithm of the java collection which is a stable sort algorithm that guarantees n log n complexity (MergeSort).
  3. The Comparator<T> is a simple entity, which defines the sorting order for a certain data type. I think this is exactly what you try to do. As the Comparator interface is part of standard java there is a lot of information and examples available in the web e.g. the Java API Description.

For your concrete example I would go for an Enum representing your (lets call it) State. This State holds the information about the sequence of the defined states (which one comes first, which second, which third).

public enum State {

    NEW(1),
    PENDING(2),
    DONE(3);

    private int sequence;

    Status(int sequence) {
        this.sequence = sequence;
    }

    public int getSequence() {
        return sequence;
    }

}

Now you can create a Comparator which is able to transform the sequence information to the sort information (-1, 0, 1).

public class StateComparator implements Comparator<State> {

    @Override
    public int compare(State firstState, State secondState) {
        return firstState.getSequence() - secondState.getSequence();
    }

}

This Comparator could now be set to a column in you SortableTableView. If you do not manage to transfer this example to your use case I offer to help you with this.

Best regards,
Ingo

from sortabletableview.

The28AWG avatar The28AWG commented on July 17, 2024

Its, work! Thanks!

from sortabletableview.

Related Issues (20)

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.