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

com.mindee.product.fr.energybill.EnergyBillV1EnergyUsage Maven / Gradle / Ivy

The newest version!
package com.mindee.product.fr.energybill;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.mindee.parsing.SummaryHelper;
import com.mindee.parsing.standard.BaseField;
import com.mindee.parsing.standard.LineItemField;
import java.util.HashMap;
import java.util.Map;
import lombok.Getter;

/**
 * Details of energy consumption.
 */
@Getter
@JsonIgnoreProperties(ignoreUnknown = true)
public class EnergyBillV1EnergyUsage extends BaseField implements LineItemField {

  /**
   * Description or details of the energy usage.
   */
  @JsonProperty("description")
  String description;
  /**
   * The end date of the energy usage.
   */
  @JsonProperty("end_date")
  String endDate;
  /**
   * The start date of the energy usage.
   */
  @JsonProperty("start_date")
  String startDate;
  /**
   * The rate of tax applied to the total cost.
   */
  @JsonProperty("tax_rate")
  Double taxRate;
  /**
   * The total cost of energy consumed.
   */
  @JsonProperty("total")
  Double total;
  /**
   * The price per unit of energy consumed.
   */
  @JsonProperty("unit_price")
  Double unitPrice;

  public boolean isEmpty() {
    return (
        (description == null || description.isEmpty())
        && (endDate == null || endDate.isEmpty())
        && (startDate == null || startDate.isEmpty())
        && taxRate == null
        && total == null
        && unitPrice == null
      );
  }

  private Map tablePrintableValues() {
    Map printable = new HashMap<>();

    printable.put("description", SummaryHelper.formatForDisplay(this.description, 36));
    printable.put("endDate", SummaryHelper.formatForDisplay(this.endDate, 10));
    printable.put("startDate", SummaryHelper.formatForDisplay(this.startDate, null));
    printable.put(
        "taxRate",
        SummaryHelper.formatAmount(this.taxRate)
    );
    printable.put(
        "total",
        SummaryHelper.formatAmount(this.total)
    );
    printable.put(
        "unitPrice",
        SummaryHelper.formatAmount(this.unitPrice)
    );
    return printable;
  }

  /**
   * Output the line in a format suitable for inclusion in an rST table.
   */
  public String toTableLine() {
    Map printable = this.tablePrintableValues();
    return String.format("| %-36s ", printable.get("description"))
      + String.format("| %-10s ", printable.get("endDate"))
      + String.format("| %-10s ", printable.get("startDate"))
      + String.format("| %-8s ", printable.get("taxRate"))
      + String.format("| %-9s ", printable.get("total"))
      + String.format("| %-10s |", printable.get("unitPrice"));
  }

  @Override
  public String toString() {
    Map printable = this.printableValues();
    return String.format("Description: %s", printable.get("description"))
      + String.format(", End Date: %s", printable.get("endDate"))
      + String.format(", Start Date: %s", printable.get("startDate"))
      + String.format(", Tax Rate: %s", printable.get("taxRate"))
      + String.format(", Total: %s", printable.get("total"))
      + String.format(", Unit Price: %s", printable.get("unitPrice"));
  }

  private Map printableValues() {
    Map printable = new HashMap<>();

    printable.put("description", SummaryHelper.formatForDisplay(this.description, null));
    printable.put("endDate", SummaryHelper.formatForDisplay(this.endDate, null));
    printable.put("startDate", SummaryHelper.formatForDisplay(this.startDate, null));
    printable.put(
        "taxRate",
        SummaryHelper.formatAmount(this.taxRate)
    );
    printable.put(
        "total",
        SummaryHelper.formatAmount(this.total)
    );
    printable.put(
        "unitPrice",
        SummaryHelper.formatAmount(this.unitPrice)
    );
    return printable;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy