Java Doc for ImagingParameter.java in  » GIS » GeoTools-2.4.1 » org » geotools » parameter » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » GIS » GeoTools 2.4.1 » org.geotools.parameter 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.geotools.parameter.AbstractParameter
   org.geotools.parameter.ImagingParameter

ImagingParameter
final class ImagingParameter extends AbstractParameter implements ParameterValue(Code)
A particular parameter in a JAI's ParameterList .
since:
   2.2
version:
   $Id: ImagingParameter.java 20874 2006-08-07 10:00:01Z jgarnett $
author:
   Martin Desruisseaux



Constructor Summary
public  ImagingParameter(ParameterDescriptor descriptor, ParameterList parameters)
     Creates a new parameter from the specified list.

Method Summary
public  booleanbooleanValue()
     Returns the boolean value of an operation parameter.
public  Objectclone()
     Returns a clone of this parameter.
public  doubledoubleValue(Unit unit)
     Always throws an exception, since this parameter has no unit.
public  doubledoubleValue()
     Returns the numeric value of the coordinate operation parameter.
public  double[]doubleValueList(Unit unit)
     Always throws an exception, since this parameter has no unit.
public  double[]doubleValueList()
     Returns an ordered sequence of two or more numeric values of an operation parameter list.
public  booleanequals(Object object)
     Compares the specified object with this parameter for equality.
public  UnitgetUnit()
     Returns null since JAI's parameters have no units.
public  ObjectgetValue()
     Returns the parameter value as an object.
public  inthashCode()
     Returns a hash value for this parameter.
public  intintValue()
     Returns the positive integer value of an operation parameter.
public  int[]intValueList()
     Returns an ordered sequence of two or more integer values of an operation parameter list.
public  voidsetValue(double value, Unit unit)
     Always throws an exception, since this parameter has no unit.
public  voidsetValue(double value)
     Set the parameter value as a floating point.
public  voidsetValue(int value)
     Set the parameter value as an integer.
public  voidsetValue(boolean value)
     Set the parameter value as a boolean.
public  voidsetValue(Object value)
     Set the parameter value as an object.
public  voidsetValue(double[] values, Unit unit)
     Always throws an exception, since this parameter has no unit.
public  StringstringValue()
     Returns the string value of an operation parameter.
public  URIvalueFile()
     Returns a reference to a file or a part of a file containing one or more parameter value.


Constructor Detail
ImagingParameter
public ImagingParameter(ParameterDescriptor descriptor, ParameterList parameters)(Code)
Creates a new parameter from the specified list.




Method Detail
booleanValue
public boolean booleanValue() throws InvalidParameterTypeException(Code)
Returns the boolean value of an operation parameter.



clone
public Object clone()(Code)
Returns a clone of this parameter. Actually returns a different classes, since this parameter is not really cloneable (it would requires a clone of ImagingParameter.parameters first).



doubleValue
public double doubleValue(Unit unit) throws InvalidParameterTypeException(Code)
Always throws an exception, since this parameter has no unit.



doubleValue
public double doubleValue() throws InvalidParameterTypeException(Code)
Returns the numeric value of the coordinate operation parameter.



doubleValueList
public double[] doubleValueList(Unit unit) throws InvalidParameterTypeException(Code)
Always throws an exception, since this parameter has no unit.



doubleValueList
public double[] doubleValueList() throws InvalidParameterTypeException(Code)
Returns an ordered sequence of two or more numeric values of an operation parameter list.



equals
public boolean equals(Object object)(Code)
Compares the specified object with this parameter for equality.



getUnit
public Unit getUnit()(Code)
Returns null since JAI's parameters have no units.



getValue
public Object getValue()(Code)
Returns the parameter value as an object. The object type is typically a Double , Integer , Boolean , String , URI , double[] or int[] .



hashCode
public int hashCode()(Code)
Returns a hash value for this parameter.



intValue
public int intValue() throws InvalidParameterTypeException(Code)
Returns the positive integer value of an operation parameter.



intValueList
public int[] intValueList() throws InvalidParameterTypeException(Code)
Returns an ordered sequence of two or more integer values of an operation parameter list.



setValue
public void setValue(double value, Unit unit) throws InvalidParameterValueException(Code)
Always throws an exception, since this parameter has no unit.



setValue
public void setValue(double value) throws InvalidParameterValueException(Code)
Set the parameter value as a floating point.



setValue
public void setValue(int value) throws InvalidParameterValueException(Code)
Set the parameter value as an integer.



setValue
public void setValue(boolean value) throws InvalidParameterValueException(Code)
Set the parameter value as a boolean.



setValue
public void setValue(Object value) throws InvalidParameterValueException(Code)
Set the parameter value as an object. The object type is typically a Double , Integer , Boolean , String , URI , double[] or int[] .



setValue
public void setValue(double[] values, Unit unit) throws InvalidParameterValueException(Code)
Always throws an exception, since this parameter has no unit.



stringValue
public String stringValue() throws InvalidParameterTypeException(Code)
Returns the string value of an operation parameter.



valueFile
public URI valueFile() throws InvalidParameterTypeException(Code)
Returns a reference to a file or a part of a file containing one or more parameter value.



Fields inherited from org.geotools.parameter.AbstractParameter
final GeneralParameterDescriptor descriptor(Code)(Java Doc)

Methods inherited from org.geotools.parameter.AbstractParameter
public Object clone()(Code)(Java Doc)
static void ensureNonNull(String name, Object object) throws IllegalArgumentException(Code)(Java Doc)
static void ensureNonNull(String name, Object[] array, int index) throws IllegalArgumentException(Code)(Java Doc)
static void ensureValidClass(Class valueClass, Object value) throws IllegalArgumentException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
final protected String formatWKT(Formatter formatter)(Code)(Java Doc)
public GeneralParameterDescriptor getDescriptor()(Code)(Java Doc)
static String getName(GeneralParameterDescriptor descriptor)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
final public String toString()(Code)(Java Doc)
static IllegalStateException unitlessParameter(GeneralParameterDescriptor descriptor)(Code)(Java Doc)
protected void write(TableWriter table) throws IOException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.