org.apache.batik.css.engine.value
Interface Value

All Known Subinterfaces:
SVGValue
All Known Implementing Classes:
AbstractValue, ComputedValue

public interface Value

This interface represents a property value.


Method Summary
 Value getBlue()
          The blue value of the RGB color.
 Value getBottom()
          The bottom value of the rect.
 java.lang.String getCssText()
          A string representation of the current value.
 short getCssValueType()
          A code defining the type of the value.
 float getFloatValue()
          This method is used to get the float value.
 Value getGreen()
          The green value of the RGB color.
 java.lang.String getIdentifier()
          The identifier value of the counter.
 Value getLeft()
          The left value of the rect.
 int getLength()
          The number of CSSValues in the list.
 java.lang.String getListStyle()
          The listStyle value of the counter.
 short getPrimitiveType()
          The type of the value.
 Value getRed()
          The red value of the RGB color.
 Value getRight()
          The right value of the rect.
 java.lang.String getSeparator()
          The separator value of the counter.
 java.lang.String getStringValue()
          This method is used to get the string value.
 Value getTop()
          The top value of the rect.
 Value item(int index)
          Used to retrieve a rule by ordinal index.
 

Method Detail

getCssText

public java.lang.String getCssText()
A string representation of the current value.

getCssValueType

public short getCssValueType()
A code defining the type of the value.

getPrimitiveType

public short getPrimitiveType()
The type of the value.

getFloatValue

public float getFloatValue()
                    throws DOMException
This method is used to get the float value.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a float value.

getStringValue

public java.lang.String getStringValue()
                                throws DOMException
This method is used to get the string value.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a string value.

getRed

public Value getRed()
             throws DOMException
The red value of the RGB color.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a RGB color value.

getGreen

public Value getGreen()
               throws DOMException
The green value of the RGB color.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a RGB color value.

getBlue

public Value getBlue()
              throws DOMException
The blue value of the RGB color.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a RGB color value.

getLength

public int getLength()
              throws DOMException
The number of CSSValues in the list. The range of valid values of the indices is 0 to length-1 inclusive.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a list value.

item

public Value item(int index)
           throws DOMException
Used to retrieve a rule by ordinal index.
Returns:
The style rule at the index position in the list, or null if that is not a valid index.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a list value.

getTop

public Value getTop()
             throws DOMException
The top value of the rect.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Rect value.

getRight

public Value getRight()
               throws DOMException
The right value of the rect.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Rect value.

getBottom

public Value getBottom()
                throws DOMException
The bottom value of the rect.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Rect value.

getLeft

public Value getLeft()
              throws DOMException
The left value of the rect.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Rect value.

getIdentifier

public java.lang.String getIdentifier()
                               throws DOMException
The identifier value of the counter.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Counter value.

getListStyle

public java.lang.String getListStyle()
                              throws DOMException
The listStyle value of the counter.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Counter value.

getSeparator

public java.lang.String getSeparator()
                              throws DOMException
The separator value of the counter.
Throws:
DOMException - INVALID_ACCESS_ERR: Raised if the value doesn't contain a Counter value.


Copyright © 2002 Apache Software Foundation. All Rights Reserved.