All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.plasma.query.model.Parameter Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
/**
 *         PlasmaSDO™ License
 * 
 * This is a community release of PlasmaSDO™, a dual-license 
 * Service Data Object (SDO) 2.1 implementation. 
 * This particular copy of the software is released under the 
 * version 2 of the GNU General Public License. PlasmaSDO™ was developed by 
 * TerraMeta Software, Inc.
 * 
 * Copyright (c) 2013, TerraMeta Software, Inc. All rights reserved.
 * 
 * General License information can be found below.
 * 
 * This distribution may include materials developed by third
 * parties. For license and attribution notices for these
 * materials, please refer to the documentation that accompanies
 * this distribution (see the "Licenses for Third-Party Components"
 * appendix) or view the online documentation at 
 * .
 *  
 */
package org.plasma.query.model;

  //---------------------------------/
 //- Imported classes and packages -/
//---------------------------------/

import java.math.BigDecimal;
import java.util.Collection;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Parameter", propOrder = {
    "collectionParameter",
    "dateParameter",
    "decimalParameter",
    "floatParameter",
    "intParameter",
    "stringParameter"
})
@XmlRootElement(name = "Parameter")
public class Parameter {

    @XmlElement(name = "CollectionParameter", namespace = "")
    protected CollectionParameter collectionParameter;
    @XmlElement(name = "DateParameter", namespace = "")
    protected DateParameter dateParameter;
    @XmlElement(name = "DecimalParameter", namespace = "")
    protected DecimalParameter decimalParameter;
    @XmlElement(name = "FloatParameter", namespace = "")
    protected FloatParameter floatParameter;
    @XmlElement(name = "IntParameter", namespace = "")
    protected IntParameter intParameter;
    @XmlElement(name = "StringParameter", namespace = "")
    protected StringParameter stringParameter;

    public Parameter() {
        super();
    } //-- org.plasma.mda.query.Parameter()

    public Parameter(String value) {
        this();
        stringParameter = new StringParameter(value);
    } 

    public Parameter(int value) {
        this();
        intParameter = new IntParameter(value);
    } 

    public Parameter(float value) {
        this();
        floatParameter = new FloatParameter(value);
    } 

    public Parameter(BigDecimal value) {
        this();
        decimalParameter = new DecimalParameter(value);
    } 

    public Parameter(Collection value) {
        this();
        collectionParameter = new CollectionParameter(value);
    } 

    public Parameter(java.util.Date value) {
        this();
        dateParameter = new DateParameter(value);       
    } 

      //-----------/
     //- Methods -/
    //-----------/

    public Object getValue()
    {
        if (stringParameter != null)
            return stringParameter.getValue();
        else if (intParameter != null)
            return new Integer(intParameter.getValue());
        else if (floatParameter != null)
            return new Float(floatParameter.getValue());
        else if (decimalParameter != null)
            return decimalParameter.getValue();
        else if (collectionParameter != null)
            return collectionParameter.getValue();
        else if (dateParameter != null)
            return dateParameter.getValue();
        else
            return null;
    }

    /**
     * Gets the value of the collectionParameter property.
     * 
     * @return
     *     possible object is
     *     {@link CollectionParameter }
     *     
     */
    public CollectionParameter getCollectionParameter() {
        return collectionParameter;
    }

    /**
     * Sets the value of the collectionParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link CollectionParameter }
     *     
     */
    public void setCollectionParameter(CollectionParameter value) {
        this.collectionParameter = value;
    }

    /**
     * Gets the value of the dateParameter property.
     * 
     * @return
     *     possible object is
     *     {@link DateParameter }
     *     
     */
    public DateParameter getDateParameter() {
        return dateParameter;
    }

    /**
     * Sets the value of the dateParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link DateParameter }
     *     
     */
    public void setDateParameter(DateParameter value) {
        this.dateParameter = value;
    }

    /**
     * Gets the value of the decimalParameter property.
     * 
     * @return
     *     possible object is
     *     {@link DecimalParameter }
     *     
     */
    public DecimalParameter getDecimalParameter() {
        return decimalParameter;
    }

    /**
     * Sets the value of the decimalParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link DecimalParameter }
     *     
     */
    public void setDecimalParameter(DecimalParameter value) {
        this.decimalParameter = value;
    }

    /**
     * Gets the value of the floatParameter property.
     * 
     * @return
     *     possible object is
     *     {@link FloatParameter }
     *     
     */
    public FloatParameter getFloatParameter() {
        return floatParameter;
    }

    /**
     * Sets the value of the floatParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link FloatParameter }
     *     
     */
    public void setFloatParameter(FloatParameter value) {
        this.floatParameter = value;
    }

    /**
     * Gets the value of the intParameter property.
     * 
     * @return
     *     possible object is
     *     {@link IntParameter }
     *     
     */
    public IntParameter getIntParameter() {
        return intParameter;
    }

    /**
     * Sets the value of the intParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link IntParameter }
     *     
     */
    public void setIntParameter(IntParameter value) {
        this.intParameter = value;
    }

    /**
     * Gets the value of the stringParameter property.
     * 
     * @return
     *     possible object is
     *     {@link StringParameter }
     *     
     */
    public StringParameter getStringParameter() {
        return stringParameter;
    }

    /**
     * Sets the value of the stringParameter property.
     * 
     * @param value
     *     allowed object is
     *     {@link StringParameter }
     *     
     */
    public void setStringParameter(StringParameter value) {
        this.stringParameter = value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy