![JAR search and dependency download from the Maven repository](/logo.png)
com.mangofactory.swagger.ordering.OperationPositionalOrdering Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-springmvc Show documentation
Show all versions of swagger-springmvc Show documentation
This project integrates swagger with the Spring Web MVC framework
package com.mangofactory.swagger.ordering;
import com.google.common.collect.Ordering;
import com.google.common.primitives.Ints;
import com.wordnik.swagger.model.Operation;
public class OperationPositionalOrdering extends Ordering {
@Override
public int compare(Operation first, Operation second) {
return Ints.compare(first.position(), second.position());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy