Interface Ordered

All Known Subinterfaces:
ResourceBasedMigrationProvider
All Known Implementing Classes:
AbstractResourceBasedMigrationProvider, CypherResourceBasedMigrationProvider, DefaultCatalogBasedMigrationProvider

public interface Ordered
Same semantics as org.springframework.core.Ordered: The actual order can be interpreted as prioritization, with the first object (with the lowest order value) having the highest priority.
Since:
1.7.0
Author:
Michael J. Simons
Soundtrack
Fatoni - Andorra
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Constant for the order with the highest precedence.
    static final int
    Constant for the order with the lowest precedence.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
  • Field Details

    • HIGHEST_PRECEDENCE

      static final int HIGHEST_PRECEDENCE
      Constant for the order with the highest precedence.
      See Also:
    • LOWEST_PRECEDENCE

      static final int LOWEST_PRECEDENCE
      Constant for the order with the lowest precedence.
      See Also:
  • Method Details

    • getOrder

      int getOrder()
      Returns:
      the order value of this object.