Class InsertStatement
- java.lang.Object
-
- org.linuxforhealth.fhir.database.utils.model.InsertStatement
-
public class InsertStatement extends java.lang.Object
Simple modeling of an insert statement. Handles parameter markers as well as simple constant expressions (as strings) We make the statement itself immutable, relying on a Builder to create it
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
InsertStatement.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InsertStatement.Builder
builder(java.lang.String schemaName, java.lang.String tableName)
Factory method for creating a build instance for anInsertStatement
java.lang.String
toString()
-
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
builder
public static InsertStatement.Builder builder(java.lang.String schemaName, java.lang.String tableName)
Factory method for creating a build instance for anInsertStatement
- Parameters:
schemaName
-tableName
-- Returns:
-
-