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

jnr.ffi.util.AnnotationNameComparator Maven / Gradle / Ivy

package jnr.ffi.util;

import java.lang.annotation.Annotation;
import java.util.Comparator;

/**
 * Sorts annotations according to name
 */
final class AnnotationNameComparator implements Comparator {
    static final Comparator INSTANCE = new AnnotationNameComparator();

    public static Comparator getInstance() {
        return INSTANCE;
    }

    public int compare(Annotation o1, Annotation o2) {
        return o1.annotationType().getName().compareTo(o2.annotationType().getName());
    }

    public boolean equals(Object other) {
        return other != null && getClass().equals(other.getClass());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy