congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ParameterList.getDoubleParameter
Code IndexAdd Tabnine to your IDE (free)

How to use
getDoubleParameter
method
in
javax.media.jai.ParameterList

Best Java code snippets using javax.media.jai.ParameterList.getDoubleParameter (Showing top 1 results out of 315)

origin: geotools/geotools

/** Returns the numeric value of the coordinate operation parameter. */
public double doubleValue() throws InvalidParameterTypeException {
  final String name = getName();
  final Class type = getType();
  try {
    if (type.equals(Float.class)) parameters.getFloatParameter(name);
    if (type.equals(Long.class)) parameters.getLongParameter(name);
    if (type.equals(Integer.class)) parameters.getIntParameter(name);
    if (type.equals(Short.class)) parameters.getShortParameter(name);
    if (type.equals(Byte.class)) parameters.getByteParameter(name);
    return parameters.getDoubleParameter(name);
  } catch (ClassCastException exception) {
    throw invalidType(exception);
  }
}
javax.media.jaiParameterListgetDoubleParameter

Popular methods of ParameterList

  • getObjectParameter
  • setParameter
  • getIntParameter
  • getParameterListDescriptor
  • getBooleanParameter
  • getByteParameter
  • getFloatParameter
  • getLongParameter
  • getShortParameter

Popular in Java

  • Start an intent from android
  • getResourceAsStream (ClassLoader)
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ImageIO (javax.imageio)
  • JTable (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now