Class CopyTableOperation

java.lang.Object
de.hybris.bootstrap.ddl.tools.CopyTableOperation

public final class CopyTableOperation extends Object
  • Method Details

    • withoutData

      public static CopyTableOperation withoutData(String fromTable, String toTable, boolean isColumnBased)
    • withData

      public static CopyTableOperation withData(String fromTable, String toTable, boolean isColumnBased)
    • withData

      public static CopyTableOperation withData(String fromTable, String toTable, boolean isColumnBased, String dataToCopySelector, Object... dataToCopySelectorParams)
    • withPK

      public CopyTableOperation withPK(String... pkColumns)
    • hasPrimaryKey

      public boolean hasPrimaryKey()
    • getPrimaryKeyColumns

      public Collection<String> getPrimaryKeyColumns()
    • getFromTable

      public String getFromTable()
    • getToTable

      public String getToTable()
    • isColumnBased

      public boolean isColumnBased()
    • isWithData

      public boolean isWithData()
    • isWithSelectiveData

      public boolean isWithSelectiveData()
    • getDataToCopySelector

      public String getDataToCopySelector()
    • getDataToCopySelectorParams

      public Object[] getDataToCopySelectorParams()