Tabnine Logo
AnimatableNumberOrIdentValue
Code IndexAdd Tabnine to your IDE (free)

How to use
AnimatableNumberOrIdentValue
in
org.apache.batik.anim.values

Best Java code snippets using org.apache.batik.anim.values.AnimatableNumberOrIdentValue (Showing top 9 results out of 315)

origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Returns a zero value of this AnimatableValue's type.
 */
public AnimatableValue getZeroValue() {
  return new AnimatableNumberOrIdentValue(target, 0f, numericIdent);
}
origin: org.apache.xmlgraphics/batik-anim

/**
 * Returns a zero value of this AnimatableValue's type.
 */
public AnimatableValue getZeroValue() {
  return new AnimatableNumberOrIdentValue(target, 0f, numericIdent);
}
origin: apache/batik

/**
 * Returns a zero value of this AnimatableValue's type.
 */
public AnimatableValue getZeroValue() {
  return new AnimatableNumberOrIdentValue(target, 0f, numericIdent);
}
origin: org.apache.xmlgraphics/batik-bridge

  protected AnimatableValue createAnimatableValue(AnimationTarget target,
                          String pn, Value v) {
    if (v instanceof StringValue) {
      return new AnimatableNumberOrIdentValue(target,
                          v.getStringValue());
    }
    FloatValue fv = (FloatValue) v;
    return new AnimatableNumberOrIdentValue(target, fv.getFloatValue(),
                        numericIdents);
  }
}
origin: apache/batik

  protected AnimatableValue createAnimatableValue(AnimationTarget target,
                          String pn, Value v) {
    if (v instanceof StringValue) {
      return new AnimatableNumberOrIdentValue(target,
                          v.getStringValue());
    }
    FloatValue fv = (FloatValue) v;
    return new AnimatableNumberOrIdentValue(target, fv.getFloatValue(),
                        numericIdents);
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

  protected AnimatableValue createAnimatableValue(AnimationTarget target,
                          String pn, Value v) {
    if (v instanceof StringValue) {
      return new AnimatableNumberOrIdentValue(target,
                          v.getStringValue());
    }
    FloatValue fv = (FloatValue) v;
    return new AnimatableNumberOrIdentValue(target, fv.getFloatValue(),
                        numericIdents);
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

AnimatableNumberOrIdentValue res;
if (result == null) {
  res = new AnimatableNumberOrIdentValue(target);
} else {
  res = (AnimatableNumberOrIdentValue) result;
origin: apache/batik

AnimatableNumberOrIdentValue res;
if (result == null) {
  res = new AnimatableNumberOrIdentValue(target);
} else {
  res = (AnimatableNumberOrIdentValue) result;
origin: org.apache.xmlgraphics/batik-anim

AnimatableNumberOrIdentValue res;
if (result == null) {
  res = new AnimatableNumberOrIdentValue(target);
} else {
  res = (AnimatableNumberOrIdentValue) result;
org.apache.batik.anim.valuesAnimatableNumberOrIdentValue

Javadoc

A number-or-identifier value in the animation system.

Most used methods

  • <init>
    Creates a new AnimatableNumberOrIdentValue for an identifier value.

Popular in Java

  • Making http post requests using okhttp
  • putExtra (Intent)
  • requestLocationUpdates (LocationManager)
  • findViewById (Activity)
  • InputStreamReader (java.io)
    A class for turning a byte stream into a character stream. Data read from the source input stream is
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Modifier (javassist)
    The Modifier class provides static methods and constants to decode class and member access modifiers
  • Best plugins for Eclipse
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