Examples of booleanValue()


Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseKeysAsEntriesAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseKeysAsEntriesAttribute() {
    TextUseKeysAsEntriesAttribute attr = (TextUseKeysAsEntriesAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-keys-as-entries");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseKeysAsEntriesAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseMathObjectsAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseMathObjectsAttribute() {
    TextUseMathObjectsAttribute attr = (TextUseMathObjectsAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-math-objects");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseMathObjectsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseObjectsAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseObjectsAttribute() {
    TextUseObjectsAttribute attr = (TextUseObjectsAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-objects");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseObjectsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseOtherObjectsAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseOtherObjectsAttribute() {
    TextUseOtherObjectsAttribute attr = (TextUseOtherObjectsAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-other-objects");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseOtherObjectsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseOutlineLevelAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseOutlineLevelAttribute() {
    TextUseOutlineLevelAttribute attr = (TextUseOutlineLevelAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-outline-level");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseOutlineLevelAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseSoftPageBreaksAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseSoftPageBreaksAttribute() {
    TextUseSoftPageBreaksAttribute attr = (TextUseSoftPageBreaksAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-soft-page-breaks");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseSoftPageBreaksAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseSpreadsheetObjectsAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseSpreadsheetObjectsAttribute() {
    TextUseSpreadsheetObjectsAttribute attr = (TextUseSpreadsheetObjectsAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-spreadsheet-objects");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseSpreadsheetObjectsAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.attribute.text.TextUseTablesAttribute.booleanValue()

   * @return - the <code>Boolean</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
   */
  public Boolean getTextUseTablesAttribute() {
    TextUseTablesAttribute attr = (TextUseTablesAttribute) getOdfAttribute(OdfDocumentNamespace.TEXT, "use-tables");
    if (attr != null) {
      return Boolean.valueOf(attr.booleanValue());
    }
    return Boolean.valueOf(TextUseTablesAttribute.DEFAULT_VALUE);
  }

  /**
 
View Full Code Here

Examples of org.openrdf.model.Literal.booleanValue()

      if (password != null) {
        setPassword(password.getLabel());
      }
      Literal readOnly = model.filter(implNode, READ_ONLY, null).objectLiteral();
      if (readOnly != null) {
        setReadOnly(readOnly.booleanValue());
      }
      for (Value obj : model.filter(implNode, SUBJECTSPACE, null).objects()) {
        subjectSpace.add(obj.stringValue());
      }
    }
View Full Code Here

Examples of org.robovm.apple.foundation.NSNumber.booleanValue()

  @Override
  public boolean getBoolean (String key) {
    NSNumber value = (NSNumber)nsDictionary.get(convertKey(key));
    if (value == null) return false;
    return value.booleanValue();
  }

  @Override
  public int getInteger (String key) {
    NSNumber value = (NSNumber)nsDictionary.get(convertKey(key));
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.