Package ac.simons.neo4j.migrations.core
Interface Ordered
- All Known Subinterfaces:
ResourceBasedMigrationProvider
- All Known Implementing Classes:
AbstractResourceBasedMigrationProvider
,CypherResourceBasedMigrationProvider
,DefaultCatalogBasedMigrationProvider
,MarkdownBasedMigrationProvider
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
Modifier and TypeFieldDescriptionstatic final int
Constant for the order with the highest precedence.static final int
Constant for the order with the lowest precedence. -
Method Summary
-
Field Details
-
HIGHEST_PRECEDENCE
static final int HIGHEST_PRECEDENCEConstant for the order with the highest precedence.- See Also:
-
LOWEST_PRECEDENCE
static final int LOWEST_PRECEDENCEConstant for the order with the lowest precedence.- See Also:
-
-
Method Details
-
getOrder
int getOrder()- Returns:
- the order value of this object.
-