Package org.flywaydb.core.api
Class MigrationVersion
- java.lang.Object
-
- org.flywaydb.core.api.MigrationVersion
-
- All Implemented Interfaces:
java.lang.Comparable<MigrationVersion>
public final class MigrationVersion extends java.lang.Object implements java.lang.Comparable<MigrationVersion>
-
-
Field Summary
Fields Modifier and Type Field Description static MigrationVersionCURRENTCurrent version.static MigrationVersionEMPTYVersion for an empty schema.static MigrationVersionLATESTLatest version.static MigrationVersionNEXTNext version.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(MigrationVersion o)booleanequals(java.lang.Object o)static MigrationVersionfromVersion(java.lang.String version)Create a MigrationVersion from a version String.java.math.BigIntegergetMajor()java.lang.StringgetMajorAsString()java.lang.StringgetMinorAsString()java.lang.StringgetVersion()inthashCode()booleanisAtLeast(java.lang.String otherVersion)Convenience method for quickly checking whether this version is at least as new as this other version.booleanisMajorNewerThan(java.lang.String otherVersion)Convenience method for quickly checking whether this major version is newer than this other major version.booleanisNewerThan(java.lang.String otherVersion)Convenience method for quickly checking whether this version is newer than this other version.java.lang.StringtoString()
-
-
-
Field Detail
-
EMPTY
public static final MigrationVersion EMPTY
Version for an empty schema.
-
LATEST
public static final MigrationVersion LATEST
Latest version.
-
CURRENT
public static final MigrationVersion CURRENT
Current version. Only a marker. For the real version use Flyway.info().current() instead.
-
NEXT
public static final MigrationVersion NEXT
Next version.
-
-
Method Detail
-
fromVersion
public static MigrationVersion fromVersion(java.lang.String version)
Create a MigrationVersion from a version String.- Parameters:
version- The version String. The valuecurrentwill be interpreted as MigrationVersion.CURRENT, a marker for the latest version that has been applied to the database.- Returns:
- The MigrationVersion
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
getVersion
public java.lang.String getVersion()
- Returns:
- Numeric version as String
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
isAtLeast
public boolean isAtLeast(java.lang.String otherVersion)
Convenience method for quickly checking whether this version is at least as new as this other version.- Parameters:
otherVersion- The other version.- Returns:
trueif this version is equal or newer,falseif it is older.
-
isNewerThan
public boolean isNewerThan(java.lang.String otherVersion)
Convenience method for quickly checking whether this version is newer than this other version.- Parameters:
otherVersion- The other version.- Returns:
trueif this version is newer,falseif it is not.
-
isMajorNewerThan
public boolean isMajorNewerThan(java.lang.String otherVersion)
Convenience method for quickly checking whether this major version is newer than this other major version.- Parameters:
otherVersion- The other version.- Returns:
trueif this major version is newer,falseif it is not.
-
getMajor
public java.math.BigInteger getMajor()
- Returns:
- The major version.
-
getMajorAsString
public java.lang.String getMajorAsString()
- Returns:
- The major version as a string.
-
getMinorAsString
public java.lang.String getMinorAsString()
- Returns:
- The minor version as a string.
-
compareTo
public int compareTo(MigrationVersion o)
- Specified by:
compareToin interfacejava.lang.Comparable<MigrationVersion>
-
-