org.dmg.pmml.pmml_4_1.descr
Class Itemset

java.lang.Object
  extended by org.dmg.pmml.pmml_4_1.descr.Itemset
All Implemented Interfaces:
Serializable

public class Itemset
extends Object
implements Serializable

Java class for anonymous complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType>
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://www.dmg.org/PMML-4_1}Extension" maxOccurs="unbounded" minOccurs="0"/>
         <element ref="{http://www.dmg.org/PMML-4_1}ItemRef" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="support" type="{http://www.dmg.org/PMML-4_1}PROB-NUMBER" />
       <attribute name="numberOfItems" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" />
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  List<Extension> extensions
           
protected  String id
           
protected  List<ItemRef> itemReves
           
protected  BigInteger numberOfItems
           
protected  BigDecimal support
           
 
Constructor Summary
Itemset()
           
 
Method Summary
 List<Extension> getExtensions()
          Gets the value of the extensions property.
 String getId()
          Gets the value of the id property.
 List<ItemRef> getItemReves()
          Gets the value of the itemReves property.
 BigInteger getNumberOfItems()
          Gets the value of the numberOfItems property.
 BigDecimal getSupport()
          Gets the value of the support property.
 void setId(String value)
          Sets the value of the id property.
 void setNumberOfItems(BigInteger value)
          Sets the value of the numberOfItems property.
 void setSupport(BigDecimal value)
          Sets the value of the support property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

extensions

protected List<Extension> extensions

itemReves

protected List<ItemRef> itemReves

id

protected String id

support

protected BigDecimal support

numberOfItems

protected BigInteger numberOfItems
Constructor Detail

Itemset

public Itemset()
Method Detail

getExtensions

public List<Extension> getExtensions()
Gets the value of the extensions property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the extensions property.

For example, to add a new item, do as follows:

    getExtensions().add(newItem);
 

Objects of the following type(s) are allowed in the list Extension


getItemReves

public List<ItemRef> getItemReves()
Gets the value of the itemReves property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the itemReves property.

For example, to add a new item, do as follows:

    getItemReves().add(newItem);
 

Objects of the following type(s) are allowed in the list ItemRef


getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getSupport

public BigDecimal getSupport()
Gets the value of the support property.

Returns:
possible object is BigDecimal

setSupport

public void setSupport(BigDecimal value)
Sets the value of the support property.

Parameters:
value - allowed object is BigDecimal

getNumberOfItems

public BigInteger getNumberOfItems()
Gets the value of the numberOfItems property.

Returns:
possible object is BigInteger

setNumberOfItems

public void setNumberOfItems(BigInteger value)
Sets the value of the numberOfItems property.

Parameters:
value - allowed object is BigInteger


Copyright © 2001-2012 JBoss by Red Hat. All Rights Reserved.