All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.rivulet.FieldNameComparator Maven / Gradle / Ivy

The newest version!
package io.rivulet;

import java.lang.reflect.Field;
import java.util.Comparator;

/* Compares two field instances based on their names. */
public class FieldNameComparator implements Comparator {

    @Override
    public int compare(Field f1, Field f2) {
        return f1.getName().compareTo(f2.getName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy