📄 imagingparameters.html
字号:
<TD><B>Methods inherited from interface GeneralParameterValue</B></TD></TR><TR BGCOLOR="white" CLASS="TableRowColor"><TD><CODE>getDescriptor</CODE></TD></TR></TABLE> <P><!-- ============ FIELD DETAIL =========== --><A NAME="field_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Field Detail</B></FONT></TD></TR></TABLE><A NAME="parameters"><!-- --></A><H3>parameters</H3><PRE>public final <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/ParameterList.html" title="class or interface in javax.media.jai">ParameterList</A> <B>parameters</B></PRE><DL><DD>The JAI's parameter list. This is also the backing store for this parameter value group: all "ordinary" parameters (i.e. <strong>not</strong> including <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/image/renderable/ParameterBlock.html#getSources()" title="class or interface in java.awt.image.renderable">sources</A>) are actually stored in this list. <P> If the <A HREF="../../../org/geotools/parameter/ImagingParameterDescriptors.html#descriptor">JAI descriptor</A> is an instance of <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/OperationDescriptor.html" title="class or interface in javax.media.jai"><CODE>OperationDescriptor</CODE></A>, then this parameter list is also an instance of <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/ParameterBlockJAI.html" title="class or interface in javax.media.jai"><CODE>ParameterBlockJAI</CODE></A>. The <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/image/renderable/ParameterBlock.html#getSources()" title="class or interface in java.awt.image.renderable">sources</A> must be handled separatly, because the source type for a JAI operator (typically <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/image/RenderedImage.html" title="class or interface in java.awt.image"><CODE>RenderedImage</CODE></A>) is not the same than the source type for a coverage operation (typically <CODE>org.opengis.coverage.GridCoverage</CODE>).<P><DL></DL></DL><!-- ========= CONSTRUCTOR DETAIL ======== --><A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Constructor Detail</B></FONT></TD></TR></TABLE><A NAME="ImagingParameters(org.geotools.parameter.ImagingParameterDescriptors)"><!-- --></A><H3>ImagingParameters</H3><PRE>public <B>ImagingParameters</B>(<A HREF="../../../org/geotools/parameter/ImagingParameterDescriptors.html" title="class in org.geotools.parameter">ImagingParameterDescriptors</A> descriptor)</PRE><DL><DD>Constructs a parameter group for the specified descriptor.<P></DL><HR><A NAME="ImagingParameters(java.util.Map, javax.media.jai.ParameterList)"><!-- --></A><H3>ImagingParameters</H3><PRE>public <B>ImagingParameters</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/Map.html" title="class or interface in java.util">Map</A> properties, <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/ParameterList.html" title="class or interface in javax.media.jai">ParameterList</A> parameters)</PRE><DL><DD>Constructs a parameter group wrapping the specified JAI parameters. A default <A HREF="../../../org/geotools/parameter/ImagingParameterDescriptors.html" title="class in org.geotools.parameter"><CODE>ImagingParameterDescriptors</CODE></A> is created.<P><DT><B>Parameters:</B><DD><CODE>properties</CODE> - Set of properties. Should contains at least .<DD><CODE>parameters</CODE> - The JAI's parameters.</DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="values()"><!-- --></A><H3>values</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>values</B>()</PRE><DL><DD>Returns all values in this group as an unmodifiable list. The returned list contains all parameters found in the <A HREF="../../../org/geotools/parameter/ImagingParameters.html#parameters">underlying parameter list</A>. In addition, it may contains sources found in the JAI's <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/OperationDescriptor.html" title="class or interface in javax.media.jai">operation descriptor</A>.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>values</CODE> in interface <CODE>ParameterValueGroup</CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="parameter(java.lang.String)"><!-- --></A><H3>parameter</H3><PRE>public ParameterValue <B>parameter</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name) throws ParameterNotFoundException</PRE><DL><DD>Returns the value in this group for the specified identifier code. Getter and setter methods will use directly the JAI's <A HREF="../../../org/geotools/parameter/ImagingParameters.html#parameters">parameter list</A> as the underlying backing store, when applicable.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>parameter</CODE> in interface <CODE>ParameterValueGroup</CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>name</CODE> - The case insensitive identifier code of the parameter to search for.<DT><B>Returns:</B><DD>The parameter value for the given identifier code.<DT><B>Throws:</B><DD><CODE>ParameterNotFoundException</CODE> - if there is no parameter value for the given identifier code.</DL></DD></DL><HR><A NAME="groups(java.lang.String)"><!-- --></A><H3>groups</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/List.html" title="class or interface in java.util">List</A> <B>groups</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name) throws ParameterNotFoundException</PRE><DL><DD>Always throws an exception, since JAI's <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/ParameterList.html" title="class or interface in javax.media.jai">parameter list</A> don't have subgroups.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>groups</CODE> in interface <CODE>ParameterValueGroup</CODE></DL></DD><DD><DL><DT><B>Throws:</B><DD><CODE>ParameterNotFoundException</CODE></DL></DD></DL><HR><A NAME="addGroup(java.lang.String)"><!-- --></A><H3>addGroup</H3><PRE>public ParameterValueGroup <B>addGroup</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> name) throws ParameterNotFoundException, <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/IllegalStateException.html" title="class or interface in java.lang">IllegalStateException</A></PRE><DL><DD>Always throws an exception, since JAI's <A HREF="http://java.sun.com/products/java-media/jai/forDevelopers/jai-apidocs/javax/media/jai/ParameterList.html" title="class or interface in javax.media.jai">parameter list</A> don't have subgroups.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>addGroup</CODE> in interface <CODE>ParameterValueGroup</CODE></DL></DD><DD><DL><DT><B>Throws:</B><DD><CODE>ParameterNotFoundException</CODE><DD><CODE><A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/IllegalStateException.html" title="class or interface in java.lang">IllegalStateException</A></CODE></DL></DD></DL><HR><A NAME="equals(java.lang.Object)"><!-- --></A><H3>equals</H3><PRE>public boolean <B>equals</B>(<A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> object)</PRE><DL><DD>Compares the specified object with this parameter group for equality.<P><DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html#equals(java.lang.Object)">equals</A></CODE> in class <CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html" title="class in org.geotools.parameter">AbstractParameter</A></CODE></DL></DD><DD><DL><DT><B>Parameters:</B><DD><CODE>object</CODE> - The object to compare to .<DT><B>Returns:</B><DD> if both objects are equal.</DL></DD></DL><HR><A NAME="hashCode()"><!-- --></A><H3>hashCode</H3><PRE>public int <B>hashCode</B>()</PRE><DL><DD>Returns a hash value for this parameter group. This value doesn't need to be the same in past or future versions of this class.<P><DD><DL><DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html#hashCode()">hashCode</A></CODE> in class <CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html" title="class in org.geotools.parameter">AbstractParameter</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="clone()"><!-- --></A><H3>clone</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/Object.html" title="class or interface in java.lang">Object</A> <B>clone</B>()</PRE><DL><DD>Returns a deep copy of this group of parameter values.<P><DD><DL><DT><B>Specified by:</B><DD><CODE>clone</CODE> in interface <CODE>ParameterValueGroup</CODE><DT><B>Overrides:</B><DD><CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html#clone()">clone</A></CODE> in class <CODE><A HREF="../../../org/geotools/parameter/AbstractParameter.html" title="class in org.geotools.parameter">AbstractParameter</A></CODE></DL></DD><DD><DL></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=3 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> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/ImagingParameters.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../org/geotools/parameter/ImagingParameterDescriptors.html" title="class in org.geotools.parameter"><B>PREV CLASS</B></A> <A HREF="../../../org/geotools/parameter/MatrixParameterDescriptors.html" title="class in org.geotools.parameter"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> <A HREF="ImagingParameters.html" target="_top"><B>NO FRAMES</B></A> <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: NESTED | <A HREF="#field_summary">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: <A HREF="#field_detail">FIELD</A> | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR>Copyright © 1996-2007 <a href="http://www.geotools.org">Geotools</a>. All Rights Reserved.</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -