Code Search for Developers
 
 
  

PDouble.java from Texai at Krugle


Show PDouble.java syntax highlighted

/*
 * PDouble.java
 *
 * Created on October 16, 2006, 1:46 AM
 *
 * Description: PDouble is a double precision floating point number in the Texai logical representation language.
 *
 * Copyright (C) 2006 Stephen L. Reed.
 *
 * This program is free software; you can redistribute it and/or modify it under the terms
 * of the GNU General Public License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with this program;
 * if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */

package org.texai.kb.ejb.entity;

import javax.persistence.CascadeType;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.NamedQuery;
import javax.persistence.OneToOne;
import javax.persistence.Transient;
import org.texai.kb.Constants;

/**
 * Entity class PDouble
 *
 * @author reed
 */
@Entity
@NamedQuery(name=Constants.QUERY_FIND_PDOUBLE_BY_DOUBLE_VALUE,
query="SELECT d FROM PDouble d, PDoubleInfo di WHERE di.doubleValue = :doubleValue AND di.pDouble = d")
public class PDouble extends AbstractTerm {

  /**
   * Determines if a de-serialized file is compatible with this class.
   *
   * Maintainers must change this value if and only if the new version
   * of this class is not compatible with old versions. See Sun docs
   * for <a href=http://java.sun.com/products/jdk/1.1/docs/guide
   * /serialization/spec/version.doc.html> details. </a>
   *
   * Not necessary to include in first version of the class, but
   * included here as a reminder of its importance.
   */
  @Transient
  private static final long serialVersionUID = 1L;

  /** the persistent double information */
  @OneToOne(fetch=FetchType.LAZY, mappedBy = "pDouble", cascade=CascadeType.ALL)
  private PDoubleInfo pDoubleInfo;          // NOPMD

  /** Creates a new instance of PDouble */
  public PDouble() {
    super();
  }

  /** Creates a new instance of PDouble
   *
   * @param doubleValue the double precision value
   */
  public PDouble(final Double doubleValue) {
    super();
    //Preconditions
    assert doubleValue != null : "doubleValue must not be null";

    pDoubleInfo = new PDoubleInfo(this, doubleValue);
  }

  /** Gets the persistent double information.
   *
   * @return the persistent double information
   */
  public PDoubleInfo getPDoubleInfo() {
    return pDoubleInfo;
  }

  /** Gets the double precision value
   *
   * @return the double precision value
   */
  public Double getDoubleValue() {
    return getPDoubleInfo().getDoubleValue();
  }

  /**
   * Returns a hash code value for the object.  This implementation computes
   * a hash code value based on the unchanging doubleValue.
   * @return a hash code value for this object
   */
  @Override
  public int hashCode() {
    return getPDoubleInfo().hashCode();
  }

  /**
   * Determines whether another object is equal to this AtomicTerm.  The result is
   * <code>true</code> if and only if the argument is not null and is a AtomicTerm object that
   * has the same id field values as this object.
   * @param object the reference object with which to compare
   * @return <code>true</code> if this object is the same as the argument;
   * <code>false</code> otherwise.
   */
  @Override
  public boolean equals(final Object object) {
    if (!(object instanceof PDouble)) {
      return false;
    }
    final PDouble that = (PDouble) object;
    return this.getPDoubleInfo().equals(that.getPDoubleInfo());
  }

  /** Returns a string representation of this object.
   *
   * @return a string representation of this object
   */
  @Override
  public String toString() {
    return getPDoubleInfo().toString();
  }

  /** Returns a CycL representation of this object.
   *
   * @return a CycL representation of this object
   */
  public String toCycLString() {
    return getPDoubleInfo().toCycLString();
  }


}




See more files for this project here

Texai

Texai is an chatbot that intelligently seeks to acquire knowledge and friendly behaviors.

Project homepage: http://sourceforge.net/projects/texai
Programming language(s): Java,Shell Script,XML
License: other

  AbstractGAF.java
  AbstractGAFInfo.java
  AbstractReifiedTerm.java
  AbstractTerm.java
  AtomicTerm.java
  AtomicTermInfo.java
  BinaryGAF.java
  BinaryGAFInfo.java
  Formula.java
  FormulaArgument.java
  FormulaInfo.java
  NonAtomicTerm.java
  NonAtomicTermInfo.java
  PBlob.java
  PBlobInfo.java
  PCharacter.java
  PCharacterInfo.java
  PClob.java
  PClobInfo.java
  PDate.java
  PDateInfo.java
  PDouble.java
  PDoubleInfo.java
  PLong.java
  PLongInfo.java
  PString.java
  PStringInfo.java
  PVariable.java
  PVariableInfo.java
  QuaternaryGAF.java
  QuaternaryGAFInfo.java
  QuintaryGAF.java
  QuintaryGAFInfo.java
  Rule.java
  RuleInfo.java
  Symbol.java
  SymbolInfo.java
  TernaryGAF.java
  TernaryGAFInfo.java
  TimePoint.java
  TimePointInfo.java
  UnaryGAF.java
  UnaryGAFInfo.java
  package.html