org.openstreetmap.osmosis.pgsimple.v0_6.PostgreSqlVersionConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of osmosis-pgsimple Show documentation
Show all versions of osmosis-pgsimple Show documentation
Osmosis is a Java application and library for processing OSM data.
// This software is released into the Public Domain. See copying.txt for details.
package org.openstreetmap.osmosis.pgsimple.v0_6;
/**
* Defines constants specific to the specific schema version.
*
* @author Brett Henderson
*/
public final class PostgreSqlVersionConstants {
/**
* This class cannot be instantiated.
*/
private PostgreSqlVersionConstants() {
}
/**
* Defines the schema version number currently supported.
*/
public static final int SCHEMA_VERSION = 5;
}