Uses of Interface
org.geotools.api.parameter.Parameter
-
Packages that use Parameter Package Description org.geotools.api.data Defines the DataStore API via which all data is imported or exported.org.geotools.api.filter Filters features according their properties.org.geotools.api.filter.capability org.geotools.data.wfs.impl org.geotools.filter org.geotools.filter.capability org.geotools.filter.function -
-
Uses of Parameter in org.geotools.api.data
Classes in org.geotools.api.data that implement Parameter Modifier and Type Class Description static classDataAccessFactory.ParamData class used to capture Parameter requirements.classParameter<T>A Parameter defines information about a valid process parameter. -
Uses of Parameter in org.geotools.api.filter
Methods in org.geotools.api.filter that return Parameter Modifier and Type Method Description <T> Parameter<T>FilterFactory. parameter(String name, Class<T> type, InternationalString title, InternationalString description, boolean required, int minOccurs, int maxOccurs, T defaultValue)Creates a parameter of a function.Methods in org.geotools.api.filter with parameters of type Parameter Modifier and Type Method Description FunctionNameFilterFactory. functionName(String name, List<Parameter<?>> args, Parameter<?> ret)FunctionName used to describe an available function.FunctionNameFilterFactory. functionName(Name name, List<Parameter<?>> args, Parameter<?> ret)FunctionName used to describe an available function.Method parameters in org.geotools.api.filter with type arguments of type Parameter Modifier and Type Method Description FunctionNameFilterFactory. functionName(String name, List<Parameter<?>> args, Parameter<?> ret)FunctionName used to describe an available function.FunctionNameFilterFactory. functionName(Name name, List<Parameter<?>> args, Parameter<?> ret)FunctionName used to describe an available function. -
Uses of Parameter in org.geotools.api.filter.capability
Methods in org.geotools.api.filter.capability that return Parameter Modifier and Type Method Description Parameter<?>FunctionName. getReturn()Return type of the function.Methods in org.geotools.api.filter.capability that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter<?>>FunctionName. getArguments()Arguments for the function accepts. -
Uses of Parameter in org.geotools.data.wfs.impl
Classes in org.geotools.data.wfs.impl that implement Parameter Modifier and Type Class Description static classWFSDataAccessFactory.WFSFactoryParam<T>ADataAccessFactory.Paramsubclass that allows us to provide a default value to the lookUp method. -
Uses of Parameter in org.geotools.filter
Methods in org.geotools.filter that return Parameter Modifier and Type Method Description <T> Parameter<T>FilterFactoryImpl. parameter(String name, Class<T> type, InternationalString title, InternationalString description, boolean required, int minOccurs, int maxOccurs, T defaultValue)Methods in org.geotools.filter with parameters of type Parameter Modifier and Type Method Description FunctionNameFilterFactoryImpl. functionName(String name, List<Parameter<?>> args, Parameter<?> ret)FunctionNameFilterFactoryImpl. functionName(Name name, List<Parameter<?>> args, Parameter<?> ret)Method parameters in org.geotools.filter with type arguments of type Parameter Modifier and Type Method Description FunctionNameFilterFactoryImpl. functionName(String name, List<Parameter<?>> args, Parameter<?> ret)FunctionNameFilterFactoryImpl. functionName(Name name, List<Parameter<?>> args, Parameter<?> ret) -
Uses of Parameter in org.geotools.filter.capability
Methods in org.geotools.filter.capability that return Parameter Modifier and Type Method Description Parameter<?>FunctionNameImpl. getReturn()static <T> Parameter<T>FunctionNameImpl. parameter(String name, Class<T> type)Named parameter (argument or result).static <T> Parameter<T>FunctionNameImpl. parameter(String name, Class<T> type, int min, int max)Named parameter (argument or result).static <T> Parameter<T>FunctionNameImpl. parameter(String name, Class<T> type, String title, String description)Methods in org.geotools.filter.capability that return types with arguments of type Parameter Modifier and Type Method Description List<Parameter<?>>FunctionNameImpl. getArguments()Constructors in org.geotools.filter.capability with parameters of type Parameter Constructor Description FunctionNameImpl(String name, Class<?> returnType, Parameter<?>... arguments)FunctionNameImpl(String name, Parameter<?> retern, List<Parameter<?>> arguments)FunctionNameImpl(String name, Parameter<?> retern, Parameter<?>... arguments)FunctionNameImpl(Name name, Class<?> returnType, Parameter<?>... arguments)FunctionNameImpl(Name name, Parameter<?> retern, List<Parameter<?>> arguments)FunctionNameImpl(Name name, Parameter<?> retern, Parameter<?>... arguments)Constructor parameters in org.geotools.filter.capability with type arguments of type Parameter Constructor Description FunctionNameImpl(String name, Parameter<?> retern, List<Parameter<?>> arguments)FunctionNameImpl(Name name, Parameter<?> retern, List<Parameter<?>> arguments) -
Uses of Parameter in org.geotools.filter.function
Fields in org.geotools.filter.function declared as Parameter Modifier and Type Field Description static Parameter<Point>NorthFix. POINTstatic Parameter<Double>NorthFix. RESULTstatic Parameter<CoordinateReferenceSystem>NorthFix. SOURCE_CRSstatic Parameter<CoordinateReferenceSystem>NorthFix. TARGET_CRS
-