Examples of doubleValue()


Examples of org.odftoolkit.odfdom.dom.attribute.chart.ChartErrorUpperLimitAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getChartErrorUpperLimitAttribute() {
    ChartErrorUpperLimitAttribute attr = (ChartErrorUpperLimitAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "error-upper-limit");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.chart.ChartIntervalMajorAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getChartIntervalMajorAttribute() {
    ChartIntervalMajorAttribute attr = (ChartIntervalMajorAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "interval-major");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.chart.ChartMaximumAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getChartMaximumAttribute() {
    ChartMaximumAttribute attr = (ChartMaximumAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "maximum");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.chart.ChartMinimumAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getChartMinimumAttribute() {
    ChartMinimumAttribute attr = (ChartMinimumAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "minimum");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.chart.ChartOriginAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getChartOriginAttribute() {
    ChartOriginAttribute attr = (ChartOriginAttribute) getOdfAttribute(OdfDocumentNamespace.CHART, "origin");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawExtrusionOriginAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getDrawExtrusionOriginAttribute() {
    DrawExtrusionOriginAttribute attr = (DrawExtrusionOriginAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "extrusion-origin");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return Double.valueOf(DrawExtrusionOriginAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawPathStretchpointXAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getDrawPathStretchpointXAttribute() {
    DrawPathStretchpointXAttribute attr = (DrawPathStretchpointXAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "path-stretchpoint-x");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.draw.DrawPathStretchpointYAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getDrawPathStretchpointYAttribute() {
    DrawPathStretchpointYAttribute attr = (DrawPathStretchpointYAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "path-stretchpoint-y");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.number.NumberDisplayFactorAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getNumberDisplayFactorAttribute() {
    NumberDisplayFactorAttribute attr = (NumberDisplayFactorAttribute) getOdfAttribute(OdfDocumentNamespace.NUMBER, "display-factor");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return Double.valueOf(NumberDisplayFactorAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.office.OfficeValueAttribute.doubleValue()

   * @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Double getOfficeValueAttribute() {
    OfficeValueAttribute attr = (OfficeValueAttribute) getOdfAttribute(OdfDocumentNamespace.OFFICE, "value");
    if (attr != null) {
      return Double.valueOf(attr.doubleValue());
    }
    return null;
  }

  /**
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.