All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.colisweb.gdrive.client.sheets.formatting.GoogleSheetField.scala Maven / Gradle / Ivy

The newest version!
package com.colisweb.gdrive.client.sheets.formatting

trait GoogleSheetField {
  def field: String
}

case object NumberFormatField extends GoogleSheetField {
  val field = "userEnteredFormat.numberFormat"
}

case object BoldTextField extends GoogleSheetField {
  val field = "userEnteredFormat.textFormat.bold"
}

case object BackgroundColorField extends GoogleSheetField {
  val field = "userEnteredFormat.backgroundColor"
}

case object TextFormatField extends GoogleSheetField {
  val field = "userEnteredFormat.textFormat"
}

case object HorizontalAlignmentField extends GoogleSheetField {
  val field = "userEnteredFormat.horizontalAlignment"
}

// TODO: Generic method to combine fields & remove this
case object TextFormatAndHorizontalAlignmentField extends GoogleSheetField {
  val field = "userEnteredFormat(textFormat, horizontalAlignment)"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy