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 String
getDataPartitionName()
String
getHighValue()
String
getLowValue()
int
getSeqno()
String
getTableName()
boolean
isHighInclusive()
boolean
isLowInclusive()
void
setDataPartitionName(String dataPartitionName)
void
setHighInclusive(boolean highInclusive)
void
setHighValue(String highValue)
void
setLowInclusive(boolean lowInclusive)
void
setLowValue(String lowValue)
void
setSeqno(int seqno)
void
setTableName(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)
-
-