Klasse Abbreviation

java.lang.Object
com.inet.report.chart.format.Abbreviation
Alle implementierten Schnittstellen:
Serializable

public class Abbreviation extends Object implements Serializable
This class represents an abbreviation instance. There are four abbreviations available: thousand (K), million (M), billion (B) and none. The abbreviation divides the value and writes the abbreviation symbol after this value in a chart. The ABBREVIATION_NONE can be used to reset the abbreviation.
Seit:
8.0
Siehe auch:
  • Felddetails

    • ABBREVIATION_NONE

      public static final Abbreviation ABBREVIATION_NONE
      None abbreviation
    • ABBREVIATION_THOUSANDS

      public static final Abbreviation ABBREVIATION_THOUSANDS
      Thousands abbreviation
    • ABBREVIATION_MILLIONS

      public static final Abbreviation ABBREVIATION_MILLIONS
      Millions abbreviation
    • ABBREVIATION_BILLIONS

      public static final Abbreviation ABBREVIATION_BILLIONS
      Billions abbreviation
  • Methodendetails

    • getDivisor

      public double getDivisor()
      Returns the divisor. The divisor for ABBREVIATION_THOUSANDS is 1000.
      Gibt zurück:
      the divisor.
      Seit:
      8.0
    • getSymbol

      public String getSymbol()
      Returns the symbol for this abbreviation, e.g. 'K' for thousand.
      Gibt zurück:
      the symbol string.
      Seit:
      8.0
    • equals

      public boolean equals(Object object)
      Setzt außer Kraft:
      equals in Klasse Object
    • hashCode

      public int hashCode()
      Setzt außer Kraft:
      hashCode in Klasse Object
    • getAbbreviation

      public static Abbreviation getAbbreviation(Element element)
      Reads the XML properties of a abbreviation.
      Parameter:
      element - the DOM element
      Gibt zurück:
      the new abbreviation.
      Seit:
      8.0
      Siehe auch: