Package com.ibm.fhir.database.utils.api
Class PartitionInfo
- java.lang.Object
-
- com.ibm.fhir.database.utils.api.PartitionInfo
-
public class PartitionInfo extends Object
DTO for pertinent data from SYSCAT.DATAPARTITIONS
-
-
Constructor Summary
Constructors Constructor Description PartitionInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDataPartitionName()StringgetHighValue()StringgetLowValue()intgetSeqno()StringgetTableName()booleanisHighInclusive()booleanisLowInclusive()voidsetDataPartitionName(String dataPartitionName)voidsetHighInclusive(boolean highInclusive)voidsetHighValue(String highValue)voidsetLowInclusive(boolean lowInclusive)voidsetLowValue(String lowValue)voidsetSeqno(int seqno)voidsetTableName(String tableName)
-
-
-
Method Detail
-
getSeqno
public int getSeqno()
- Returns:
- the seqno
-
setSeqno
public void setSeqno(int seqno)
- Parameters:
seqno- the seqno to set
-
getLowValue
public String getLowValue()
- Returns:
- the lowValue
-
setLowValue
public void setLowValue(String lowValue)
- Parameters:
lowValue- the lowValue to set
-
isLowInclusive
public boolean isLowInclusive()
- Returns:
- the lowInclusive
-
setLowInclusive
public void setLowInclusive(boolean lowInclusive)
- Parameters:
lowInclusive- the lowInclusive to set
-
getHighValue
public String getHighValue()
- Returns:
- the highValue
-
setHighValue
public void setHighValue(String highValue)
- Parameters:
highValue- the highValue to set
-
isHighInclusive
public boolean isHighInclusive()
- Returns:
- the highInclusive
-
setHighInclusive
public void setHighInclusive(boolean highInclusive)
- Parameters:
highInclusive- the highInclusive to set
-
getDataPartitionName
public String getDataPartitionName()
- Returns:
- the dataPartitionName
-
setDataPartitionName
public void setDataPartitionName(String dataPartitionName)
- Parameters:
dataPartitionName- the dataPartitionName to set
-
getTableName
public String getTableName()
-
setTableName
public void setTableName(String tableName)
-
-