Klasse Row

java.lang.Object
org.avertox.MySQL.Row

public class Row extends Object
  • Konstruktordetails

    • Row

      public Row(StructureColumn[] rowStructure)
      Parameter:
      rowStructure - List of StructureColumns witch defines how the Columns are ordered in the Row
    • Row

      public Row(Column[] data, StructureColumn[] rowStructure)
      Parameter:
      data - Data with is stored in the Row
      rowStructure - List of StructureColumns witch defines how the Columns are ordered in the Row
  • Methodendetails

    • addColumn

      public boolean addColumn(Column data)
      Parameter:
      data - The Column witch should be stored in the Row
      Gibt zurück:
      true if Column could be added false if not
    • getColumns

      public List<Column> getColumns()
    • updateData

      public boolean updateData(String columnName, Object data)
      Parameter:
      columnName - Name of the Column witch should be updated
      data - Data to update
      Gibt zurück:
      true if update successfully false if not
    • resetColumn

      public boolean resetColumn(String columnName)
      Parameter:
      columnName - Name of the Column witch should be rested
      Gibt zurück:
      true if the Data of the Column could set to default false if not