Class DbMetaData
- java.lang.Object
-
- org.infinispan.persistence.jdbc.impl.table.DbMetaData
-
public class DbMetaData extends Object
- Author:
- Ryan Emerson
-
-
Constructor Summary
Constructors Constructor Description DbMetaData(org.infinispan.persistence.jdbc.common.DatabaseType type, Integer majorVersion, Integer minorVersion, boolean upsertDisabled, boolean indexingDisabled, boolean segmentedDisabled)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetMajorVersion()intgetMinorVersion()org.infinispan.persistence.jdbc.common.DatabaseTypegetType()booleanisIndexingDisabled()booleanisSegmentedDisabled()booleanisUpsertDisabled()
-
-
-
Method Detail
-
getType
public org.infinispan.persistence.jdbc.common.DatabaseType getType()
-
getMajorVersion
public int getMajorVersion()
-
getMinorVersion
public int getMinorVersion()
-
isUpsertDisabled
public boolean isUpsertDisabled()
-
isIndexingDisabled
public boolean isIndexingDisabled()
-
isSegmentedDisabled
public boolean isSegmentedDisabled()
-
-