Tabnine Logo
org.apache.batik.css.engine.value
Code IndexAdd Tabnine to your IDE (free)

How to use org.apache.batik.css.engine.value

Best Java code snippets using org.apache.batik.css.engine.value (Showing top 20 results out of 315)

origin: org.apache.xmlgraphics/batik-css

/**
 *  A string representation of the current value.
 */
public String getCssText() {
  return "rect(" + top.getCssText() + ", "
    +  right.getCssText() + ", "
    +  bottom.getCssText() + ", "
    +  left.getCssText() + ')';
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getFloatValue()}.
 */
public float getFloatValue() throws DOMException {
  throw createDOMException();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getFloatValue()}.
 */
public float getFloatValue() throws DOMException {
  return computedValue.getFloatValue();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getGreen()}.
 */
public Value getGreen() throws DOMException {
  return computedValue.getGreen();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link Value#getRed()}.
 */
public Value getRed() throws DOMException {
  return computedValue.getRed();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Creates an RGB color.
 */
protected Value createRGBColor(Value r, Value g, Value b) {
  return new RGBColorValue(r, g, b);
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link Value#getCssValueType()}.
 */
public short getCssValueType() {
  return computedValue.getCssValueType();
}
origin: org.apache.xmlgraphics/batik-css

/**
 *  A string representation of the current value.
 */
public String getCssText() {
  return getCssText(unitType, floatValue);
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Returns a printable representation of this value.
 */
public String toString() {
  return getCssText();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link Value#getIdentifier()}.
 */
public String getIdentifier() throws DOMException {
  return computedValue.getIdentifier();
}
origin: fr.avianey.apache-xmlgraphics/batik

  /**
   * Returns a printable representation of this value.
   */
  public String toString() {
    return getCssText();
  }
}
origin: org.apache.xmlgraphics/batik-css

/**
 * A string representation of the current value.
 */
public String getCssText() {
  return "rgb(" +
    red.getCssText() + ", " +
    green.getCssText() + ", " +
    blue.getCssText() + ')';
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#item(int)}.
 */
public Value item(int index) throws DOMException {
  throw createDOMException();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Converts the 'miterlimit' property to the appropriate float number.
 * @param v the CSS value describing the miterlimit property
 */
public static float convertStrokeMiterlimit(Value v) {
  float miterlimit = v.getFloatValue();
  return (miterlimit < 1.0f) ? 1.0f : miterlimit;
}
origin: org.apache.xmlgraphics/batik-css

  /**
   * Returns a printable representation of this value.
   */
  public String toString() {
    return getCssText();
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link Value#getCssText()}.
 */
public String getCssText() {
  return computedValue.getCssText();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getRight()}.
 */
public Value getRight() throws DOMException {
  throw createDOMException();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getLeft()}.
 */
public Value getLeft() throws DOMException {
  throw createDOMException();
}
origin: fr.avianey.apache-xmlgraphics/batik

/**
 * Implements {@link Value#getLeft()}.
 */
public Value getLeft() throws DOMException {
  throw createDOMException();
}
origin: org.apache.xmlgraphics/batik-css

/**
 * Implements {@link Value#getBlue()}.
 */
public Value getBlue() throws DOMException {
  throw createDOMException();
}
org.apache.batik.css.engine.value

Most used classes

  • Value
    This interface represents a property value.
  • ValueManager
    This interface is implemented by objects which manage the values associated with a property.
  • ComputedValue
    This class represents a computed property value.
  • FloatValue
    This class represents float values.
  • ListValue
    This class represents a list of values.
  • LengthManager,
  • RGBColorValue,
  • ShorthandManager$PropertyHandler,
  • ShorthandManager,
  • StringMap,
  • URIValue,
  • ColorManager,
  • ICCColor,
  • CIELabColor,
  • DeviceColor,
  • ICCNamedColor,
  • LineHeightValue,
  • AbstractColorManager,
  • AbstractValueFactory
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