📄 operationparametergroup.java
字号:
/*$************************************************************************************************ ** ** $Id: OperationParameterGroup.java,v 1.4 2004/05/12 18:52:17 desruisseaux Exp $ ** ** $Source: /cvsroot/geoapi/src/org/opengis/parameter/OperationParameterGroup.java,v $ ** ** Copyright (C) 2003 Open GIS Consortium, Inc. All Rights Reserved. http://www.opengis.org/Legal/ ** *************************************************************************************************/package org.opengis.parameter;/** * The definition of a group of related parameters used by an operation method. * * @UML abstract CC_OperationParameterGroup * @author ISO 19111 * @author <A HREF="http://www.opengis.org">OpenGIS® consortium</A> * @version <A HREF="http://www.opengis.org/docs/03-073r1.zip">Abstract specification 2.0</A> * * @see ParameterValueGroup * @see OperationParameter */public interface OperationParameterGroup extends GeneralOperationParameter { /** * Creates a new instance of {@linkplain ParameterValueGroup parameter value group} * initialized with the {@linkplain OperationParameter#getDefaultValue default values}. * The {@linkplain ParameterValueGroup#getDescriptor parameter value descriptor} * for the created group will be <code>this</code> object. */// ParameterValueGroup createValue(); /** * Returns the parameters in this group. * * @return The parameters. * @UML association includesParameter */ GeneralOperationParameter[] getParameters(); /** * Returns the first parameter in this group for the specified name. If no * {@linkplain OperationParameter operation parameter} or group is found for * the given name, then this method search recursively in subgroups (if any). * * @param name The case insensitive name of the parameter to search for. * @return The parameter for the given name. * @throws ParameterNotFoundException if there is no parameter for the given name. */ GeneralOperationParameter getParameter(String name) throws ParameterNotFoundException;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -