Package io.tiledb.java.api
Class Version
- java.lang.Object
-
- io.tiledb.java.api.Version
-
public class Version extends java.lang.Object
TileDB version. (major, minor, revision)
-
-
Constructor Summary
Constructors Constructor Description Version()
Constructor for TileDB library version object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMajor()
int
getMinor()
int
getRevision()
java.lang.String
toString()
Prints version to string.
-
-
-
Method Detail
-
getMajor
public int getMajor()
- Returns:
- The major number.
-
getMinor
public int getMinor()
- Returns:
- The minor number.
-
getRevision
public int getRevision()
- Returns:
- The revision number.
-
toString
public java.lang.String toString()
Prints version to string.- Overrides:
toString
in classjava.lang.Object
-
-