abstractioobject.html

来自「数据挖掘方面最新软件」· HTML 代码 · 共 465 行 · 第 1/2 页

HTML
465
字号
</TR></TABLE><A NAME="AbstractIOObject()"><!-- --></A><H3>AbstractIOObject</H3><PRE>public <B>AbstractIOObject</B>()</PRE><DL></DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"><B>Method Detail</B></FONT></TH></TR></TABLE><A NAME="setSource(java.lang.String)"><!-- --></A><H3>setSource</H3><PRE>public void <B>setSource</B>(java.lang.String&nbsp;sourceName)</PRE><DL><DD>Sets the source of this IOObject.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#setSource(java.lang.String)">setSource</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getSource()"><!-- --></A><H3>getSource</H3><PRE>public java.lang.String <B>getSource</B>()</PRE><DL><DD>Returns the source of this IOObject (might return null if the source is unknown).<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#getSource()">getSource</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getLog()"><!-- --></A><H3>getLog</H3><PRE>public <A HREF="../../../com/rapidminer/tools/LoggingHandler.html" title="interface in com.rapidminer.tools">LoggingHandler</A> <B>getLog</B>()</PRE><DL><DD>Gets the logging associated with the operator currently working on this   IOObject or the global log service if no operator was set.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#getLog()">getLog</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="setWorkingOperator(com.rapidminer.operator.Operator)"><!-- --></A><H3>setWorkingOperator</H3><PRE>public void <B>setWorkingOperator</B>(<A HREF="../../../com/rapidminer/operator/Operator.html" title="class in com.rapidminer.operator">Operator</A>&nbsp;operator)</PRE><DL><DD>Sets the current working operator, i.e. the operator which is currently   working on this IOObject. This might be used for example for logging.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#setWorkingOperator(com.rapidminer.operator.Operator)">setWorkingOperator</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="copy()"><!-- --></A><H3>copy</H3><PRE>public <A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A> <B>copy</B>()</PRE><DL><DD>Returns not a copy but the very same object. This is ok for IOObjects which cannot be altered after creation. However, IOObjects which might be changed (e.g. <A HREF="../../../com/rapidminer/example/ExampleSet.html" title="interface in com.rapidminer.example"><CODE>ExampleSet</CODE></A>s) should overwrite this method and return a proper copy.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#copy()">copy</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="initWriting()"><!-- --></A><H3>initWriting</H3><PRE>protected void <B>initWriting</B>()</PRE><DL><DD>Initializes the writing of this object. This method is invoked before  the actual writing is performed. The default implementation does nothing.     This method should also be used for clean up  processes which should be performed before the actual writing is done. For   example, models might decide to keep the example set information directly  after learning (e.g. for visualization reasons) but not to write them down.  Please note that all fields will be written into files unless they are set  to null in this method or they are marked as transient.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="write(java.io.OutputStream)"><!-- --></A><H3>write</H3><PRE>public final void <B>write</B>(java.io.OutputStream&nbsp;out)                 throws java.io.IOException</PRE><DL><DD>Just serializes this object with help of a <A HREF="../../../com/rapidminer/tools/XMLSerialization.html" title="class in com.rapidminer.tools"><CODE>XMLSerialization</CODE></A>.   Initializes <A HREF="../../../com/rapidminer/operator/AbstractIOObject.html#initWriting()"><CODE>initWriting()</CODE></A> before the actual writing is performed.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../com/rapidminer/operator/IOObject.html#write(java.io.OutputStream)">write</A></CODE> in interface <CODE><A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A></CODE></DL></DD><DD><DL><DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE></DL></DD></DL><HR><A NAME="read(java.io.InputStream)"><!-- --></A><H3>read</H3><PRE>public static <A HREF="../../../com/rapidminer/operator/IOObject.html" title="interface in com.rapidminer.operator">IOObject</A> <B>read</B>(java.io.InputStream&nbsp;in)                     throws java.io.IOException</PRE><DL><DD>Deserializes an IOObect from the given XML stream.<P><DD><DL></DL></DD><DD><DL><DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - if any IO error occurs.<DD><CODE>java.lang.IllegalStateException</CODE> - if <A HREF="../../../com/rapidminer/tools/XMLSerialization.html#init(java.lang.ClassLoader)"><CODE>XMLSerialization.init(ClassLoader)</CODE></A> has never been called.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/AbstractIOObject.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=114160&amp;type=2" width="125" height="37" border="0" alt="SourceForge.net Logo" /></a></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;PREV CLASS&nbsp;&nbsp;<A HREF="../../../com/rapidminer/operator/AbstractModel.html" title="class in com.rapidminer.operator"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../index.html?com/rapidminer/operator/AbstractIOObject.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="AbstractIOObject.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;&nbsp;<SCRIPT type="text/javascript">  <!--  if(window==top) {    document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');  }  //--></SCRIPT><NOSCRIPT>  <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR><i>Copyright &#169; 2001-2008 by <a href="http://rapid-i.com" target="_blank">Rapid-I</a></i></BODY></HTML>

⌨️ 快捷键说明

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