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

com.mangofactory.swagger.ordering.ApiDescriptionLexicographicalOrdering Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.mangofactory.swagger.ordering;

import com.google.common.collect.Ordering;
import com.wordnik.swagger.model.ApiDescription;

public class ApiDescriptionLexicographicalOrdering extends Ordering {
  @Override
  public int compare(ApiDescription apiDescription, ApiDescription other) {
    return apiDescription.path().compareTo(other.path());
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy