Codota Logo
WaferMapDataset.isMinValue
Code IndexAdd Codota to your IDE (free)

How to use
isMinValue
method
in
org.jfree.data.general.WaferMapDataset

Best Java code snippets using org.jfree.data.general.WaferMapDataset.isMinValue (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
SimpleDateFormat s =
  • Codota IconString pattern;new SimpleDateFormat(pattern)
  • Codota IconString template;Locale locale;new SimpleDateFormat(template, locale)
  • Codota Iconnew SimpleDateFormat()
  • Smart code suggestions by Codota
}
origin: jfree/jfreechart

/**
 * Sets a value in the dataset and updates min and max value entries.
 *
 * @param value  the value.
 * @param chipx  the x-index.
 * @param chipy  the y-index.
 */
public void setValue(Number value, Comparable chipx, Comparable chipy) {
  this.data.setValue(value, chipx, chipy);
  if (isMaxValue(value)) {
    this.maxValue = (Double) value;
  }
  if (isMinValue(value)) {
    this.minValue = (Double) value;
  }
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Sets a value in the dataset and updates min and max value entries.
 *
 * @param value  the value.
 * @param chipx  the x-index.
 * @param chipy  the y-index.
 */
public void setValue(Number value, Comparable chipx, Comparable chipy) {
  this.data.setValue(value, chipx, chipy);
  if (isMaxValue(value)) {
    this.maxValue = (Double) value;
  }
  if (isMinValue(value)) {
    this.minValue = (Double) value;
  }
}
org.jfree.data.generalWaferMapDatasetisMinValue

Javadoc

Tests to see if the passed value is smaller than the stored minvalue.

Popular methods of WaferMapDataset

  • addChangeListener
  • getChipSpace
    Returns the space to draw between chips.
  • getChipValue
    Returns the value for a given chip x and y or null.
  • getGroup
  • getMaxChipX
    Returns the wafer x-dimension.
  • getMaxChipY
    Returns the number of chips in the y-dimension.
  • getMaxValue
    Returns the maximum value stored in the dataset.
  • getMinValue
    Returns the minimum value stored in the dataset.
  • getUniqueValues
    Returns the set of unique values.
  • isMaxValue
    Tests to see if the passed value is larger than the stored maxvalue.
  • removeChangeListener
  • setValue
    Sets a value in the dataset and updates min and max value entries.
  • removeChangeListener,
  • setValue,
  • <init>,
  • addValue

Popular in Java

  • Creating JSON documents from java classes using gson
  • setScale (BigDecimal)
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Notification (javax.management)
  • JComboBox (javax.swing)
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now