Class PartitionInfo
- java.lang.Object
-
- org.linuxforhealth.fhir.database.utils.api.PartitionInfo
-
public class PartitionInfo extends java.lang.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 java.lang.String
getDataPartitionName()
java.lang.String
getHighValue()
java.lang.String
getLowValue()
int
getSeqno()
java.lang.String
getTableName()
boolean
isHighInclusive()
boolean
isLowInclusive()
void
setDataPartitionName(java.lang.String dataPartitionName)
void
setHighInclusive(boolean highInclusive)
void
setHighValue(java.lang.String highValue)
void
setLowInclusive(boolean lowInclusive)
void
setLowValue(java.lang.String lowValue)
void
setSeqno(int seqno)
void
setTableName(java.lang.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 java.lang.String getLowValue()
- Returns:
- the lowValue
-
setLowValue
public void setLowValue(java.lang.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 java.lang.String getHighValue()
- Returns:
- the highValue
-
setHighValue
public void setHighValue(java.lang.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 java.lang.String getDataPartitionName()
- Returns:
- the dataPartitionName
-
setDataPartitionName
public void setDataPartitionName(java.lang.String dataPartitionName)
- Parameters:
dataPartitionName
- the dataPartitionName to set
-
getTableName
public java.lang.String getTableName()
-
setTableName
public void setTableName(java.lang.String tableName)
-
-