⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 miningschema.java

📁 一个数据挖掘软件ALPHAMINERR的整个过程的JAVA版源代码
💻 JAVA
字号:
/**
 * This file is generated by BorlandXML.
 */

package com.prudsys.pdm.Adapters.PmmlVersion20;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

/**
 * The MiningSchema class represents the element "MiningSchema" with the content
 * model defined as follows:
 * <p>
 * &lt;!ELEMENT MiningSchema (MiningField)+&gt;<br>
 */
public class MiningSchema extends com.borland.xml.toolkit.XmlObject 
{
	/** xml tag name of this element. */
	public static String _tagName = "MiningSchema";
	/** Defines a list of MiningField objects. */
	protected ArrayList _objMiningField = new ArrayList();

	/**
	 * Creates an empty MiningSchema object
	 */
	public MiningSchema()
	{
		super();
	}

	/**
	 * Returns an array of MiningField objects. The length of the returned
	 * array is zero if the list of MiningField object is empty.
	 */
	public MiningField[] getMiningField()
	{
		return (MiningField[])_objMiningField.toArray(new MiningField[0]);
	}

	/**
	 * Replaces all existing MiningField objects with a new array of
	 * MiningField objects.
	 * @param objArray	an array of MiningField objects.
	 */
	public void setMiningField(MiningField[] objArray)
	{
		if( objArray == null || objArray.length == 0 )
			this._objMiningField.clear();
		else
		{
			this._objMiningField = new ArrayList(Arrays.asList(objArray));
			for( int i=0; i<objArray.length; i++ )
			{
				if( objArray[i] != null )
					objArray[i]._setParent(this);
			}
		}
	}

	/**
	 * Gets the MiningField object at the specified index.
	 * @param index	index of the returned object.
	 * @throws IndexOutOfBoundsException	if index is out of range.
	 */
	public MiningField getMiningField(int index)
	{
		return (MiningField)_objMiningField.get(index);
	}

	/**
	 * Replaces an existing MiningField object at the specified index with
	 * a new MiningField object.
	 * @param index	index of replaced object.
	 * @throws IndexOutOfBoundsException	if index is out of range.
	 */
	public void setMiningField(int index, MiningField obj)
	{
		if( obj == null )
			removeMiningField(index);
		else
		{
			_objMiningField.set(index, obj);
			obj._setParent(this);
		}
	}

	/**
	 * Returns the number of MiningField objects in the list.
	 */
	public int getMiningFieldCount()
	{
		return _objMiningField.size();
	}

	/**
	 * Returns <code>true</code> if there is no MiningField object in the list; otherwise,
	 * the method returns <code>false</code>.
	 */
	public boolean isNoMiningField()
	{
		return _objMiningField.size() == 0;
	}

	/**
	 * Returns a read-only list of MiningField objects.
	 */
	public List getMiningFieldList()
	{
		return Collections.unmodifiableList(_objMiningField);
	}

	/**
	 * Adds a new MiningField object at the end of the list.
	 * @return <code>true</code> if the new object is added to the list; otherwise,
	 * the method returns <code>false</code>.
	 */
	public boolean addMiningField(MiningField obj)
	{
		if( obj==null )
			return false;

		obj._setParent(this);
		return _objMiningField.add(obj);
	}

	/**
	 * Adds a list of new MiningField objects at the end of the list.
	 * @return <code>true</code> if the list was changed; otherwise, the method
	 * returns <code>false</code>.
	 */
	public boolean addMiningField(Collection coMiningField)
	{
		if( coMiningField==null )
			return false;

		java.util.Iterator it = coMiningField.iterator();
		while( it.hasNext() )
		{
			Object obj = it.next();
			if( obj != null && obj instanceof com.borland.xml.toolkit.XmlObject )
				((com.borland.xml.toolkit.XmlObject)obj)._setParent(this);
		}
		return _objMiningField.addAll(coMiningField);
	}

	/**
	 * Removes an existing MiningField object at the specified index.
	 * @return	The removed object.
	 */
	public MiningField removeMiningField(int index)
	{
		return (MiningField)_objMiningField.remove(index);
	}

	/**
	 * Removes the specified MiningField object.
	 * @return <code>true</code> if this list contains the object; otherwise,
	 * the method returns <code>false</code>.
	 */
	public boolean removeMiningField(MiningField obj)
	{
		return _objMiningField.remove(obj);
	}

	/**
	 * Clears all MiningField objects from the list.
	 */
	public void clearMiningFieldList()
	{
		_objMiningField.clear();
	}

	/**
	 * Marshals this object to an element.
	 */
	public com.borland.xml.toolkit.Element marshal()
	{
		com.borland.xml.toolkit.Element elem = new com.borland.xml.toolkit.Element(get_TagName());
		/** Marshals a list of MiningField objects to elements */
		Iterator it1 = _objMiningField.iterator();
		while( it1.hasNext() )
		{
			MiningField obj = (MiningField)it1.next();
			if( obj != null )
				elem.addContent(obj.marshal());
		}

		return elem;
	}

	/**
	 * Unmarshals the specified "MiningSchema" element back to a MiningSchema object.
	 */
	public static MiningSchema unmarshal(com.borland.xml.toolkit.Element elem)
	{
		if( elem == null )
			return null;

		MiningSchema __objMiningSchema = new MiningSchema();
		/** Unmarshals a list of "<<_tagName_>>" elements back to MiningField objects. */
		Iterator it1 = elem.getChildren(MiningField._tagName).iterator();
		while( it1.hasNext() )
			__objMiningSchema.addMiningField(MiningField.unmarshal((com.borland.xml.toolkit.Element)it1.next()));

		return __objMiningSchema;
	}

	/**
	 * Validates this object. If you pass <code>true</code> to this method, it
	 * checks for the first error and stops. On the other hand, if you pass
	 * <code>false</code> to this method, it collects all the errors by
	 * visiting every available elements.
	 * @param firstError	<code>true</code> to exit this method when the first error
	 * is found; <code>false</code> to collect all errors.
	 * @return com.borland.xml.toolkit.ErrorList	A list that contains one or more errors.
	 * @see com.borland.xml.toolkit.XmlObject#validate()
	 * @see com.borland.xml.toolkit.XmlObject#isValid()
	 * @see com.borland.xml.toolkit.ErrorList
	 */
	public com.borland.xml.toolkit.ErrorList validate(boolean firstError)
	{
		com.borland.xml.toolkit.ErrorList errors = new com.borland.xml.toolkit.ErrorList();

		/** MiningField is one or more */
		if( _objMiningField.size() == 0 )
		{
			errors.add(new com.borland.xml.toolkit.ElementError(this, MiningField.class));
			if( firstError )
				return errors;
		}
		else
		{
			Iterator it1 = _objMiningField.iterator();
			while( it1.hasNext() )
			{
				MiningField obj = (MiningField)it1.next();
				if( obj != null )
				{
					errors.add(obj.validate(firstError));
					if( firstError && errors.size() > 0 )
						return errors;
				}
			}
		}

		return errors.size()==0 ? null : errors;
	}

	/**
	 * Returns a list containing all child elements. Each element in the list is a subclass
	 * of XmlObject.
	 */
	public java.util.List _getChildren()
	{
		java.util.List children = new java.util.ArrayList();
		/** adds _objMiningField */
		if( _objMiningField != null && _objMiningField.size() > 0 )
			children.add(_objMiningField);
		return children;
	}


	/**
	 * Gets the tag name of this element.
	 */
	public String get_TagName()
	{
		return _tagName;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -