Java Doc for GeophysicsCategoryList.java in  » GIS » GeoTools-2.4.1 » org » geotools » coverage » 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.coverage 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.util.AbstractList
   org.geotools.coverage.CategoryList
      org.geotools.coverage.GeophysicsCategoryList

GeophysicsCategoryList
final class GeophysicsCategoryList extends CategoryList (Code)
An immutable list of geophysics category. Elements are usually (but not always) instances of [@link GeophysicsCategory}. Exception to this rule includes categories wrapping an identity transforms. This list can transform geophysics values into sample values using the list of Category . This transform is thread safe if each Category.getSampleToGeophysics transform is thread-safe too.
since:
   2.1
version:
   $Id: GeophysicsCategoryList.java 22817 2006-11-17 17:24:55Z desruisseaux $
author:
   Martin Desruisseaux



Constructor Summary
 GeophysicsCategoryList(Category[] categories, Unit unit, CategoryList inverse)
     Constructs a category list using the specified array of categories.
Parameters:
  categories - The list of categories.

Method Summary
public  booleanequals(Object object)
     Compares the specified object with this category list for equality.
synchronized  StringBufferformat(double value, boolean writeUnits, Locale locale, StringBuffer buffer)
     Formatte la valeur spécifiée selon les conventions locales.
public  CategoryListgeophysics(boolean toGeophysics)
     If toGeophysics is false , cancel the action of a previous call to geophysics(true) .
public  UnitgetUnits()
     Returns the unit information for quantitative categories in this list.


Constructor Detail
GeophysicsCategoryList
GeophysicsCategoryList(Category[] categories, Unit unit, CategoryList inverse)(Code)
Constructs a category list using the specified array of categories.
Parameters:
  categories - The list of categories. Elements should beinstances of GeophysicsCategory(most of the time, but not always).
Parameters:
  unit - The unit information for all quantitative categories.May be null if no category has units.
Parameters:
  inverse - The CategoryList which is constructing thisGeophysicsCategoryList.
throws:
  IllegalArgumentException - if two or more categorieshave overlapping sample value range.




Method Detail
equals
public boolean equals(Object object)(Code)
Compares the specified object with this category list for equality. If the two objects are instances of CategoryList , then the test is a little bit stricter than the default AbstractList.equals .



format
synchronized StringBuffer format(double value, boolean writeUnits, Locale locale, StringBuffer buffer)(Code)
Formatte la valeur spécifiée selon les conventions locales. Le nombre sera écrit avec un nombre de chiffres après la virgule approprié pour la catégorie. Le symbole des unités sera ajouté après le nombre si writeUnit est true .
Parameters:
  value - Valeur du paramètre géophysique à formatter.
Parameters:
  writeUnit - Indique s'il faut écrire le symbole des unités après le nombre.Cet argument sera ignoré si aucune unité n'avait été spécifiée au constructeur.
Parameters:
  locale - Conventions locales à utiliser, ou null pour les conventions pardéfaut.
Parameters:
  buffer - Le buffer dans lequel écrire la valeur. Le buffer buffer dans lequel auront été écrit la valeur et les unités.



geophysics
public CategoryList geophysics(boolean toGeophysics)(Code)
If toGeophysics is false , cancel the action of a previous call to geophysics(true) . This method always returns a list of categories in which Category.geophysics(boolean) Category.geophysics (toGeophysics) has been invoked for each category.



getUnits
public Unit getUnits()(Code)
Returns the unit information for quantitative categories in this list. May returns null if there is no quantitative categories in this list, or if there is no unit information.



Fields inherited from org.geotools.coverage.CategoryList
final CategoryList inverse(Code)(Java Doc)
final Category nodata(Code)(Java Doc)

Methods inherited from org.geotools.coverage.CategoryList
static int binarySearch(double[] array, double key)(Code)(Java Doc)
final public int compare(Object o1, Object o2)(Code)(Java Doc)
final public Matrix derivative(DirectPosition point) throws TransformException(Code)(Java Doc)
final public double derivative(double value) throws TransformException(Code)(Java Doc)
public boolean equals(Object object)(Code)(Java Doc)
StringBuffer format(double value, boolean writeUnits, Locale locale, StringBuffer buffer)(Code)(Java Doc)
final public String format(double value, Locale locale)(Code)(Java Doc)
public CategoryList geophysics(boolean toGeophysics)(Code)(Java Doc)
final public Object get(int i)(Code)(Java Doc)
final public Category getCategory(double sample)(Code)(Java Doc)
final public ColorModel getColorModel(int visibleBand, int numBands)(Code)(Java Doc)
final public ColorModel getColorModel(int visibleBand, int numBands, int type)(Code)(Java Doc)
final public InternationalString getName()(Code)(Java Doc)
final public NumberRange getRange()(Code)(Java Doc)
final public int getSourceDimensions()(Code)(Java Doc)
final public int getTargetDimensions()(Code)(Java Doc)
public Unit getUnits()(Code)(Java Doc)
final public MathTransform inverse()(Code)(Java Doc)
public boolean isIdentity()(Code)(Java Doc)
final boolean isScaled(boolean toGeophysics)(Code)(Java Doc)
static boolean isScaled(Category[] categories, boolean toGeophysics)(Code)(Java Doc)
static boolean isSorted(Category[] categories)(Code)(Java Doc)
final public int size()(Code)(Java Doc)
final public Object[] toArray()(Code)(Java Doc)
final public String toString()(Code)(Java Doc)
final String toString(Object owner)(Code)(Java Doc)
public String toWKT() throws UnsupportedOperationException(Code)(Java Doc)
final public DirectPosition transform(DirectPosition ptSrc, DirectPosition ptDst) throws TransformException(Code)(Java Doc)
final public double transform(double value) throws TransformException(Code)(Java Doc)
final public void transform(double[] srcPts, int srcOff, double[] dstPts, int dstOff, int numPts) throws TransformException(Code)(Java Doc)
final public void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts) throws TransformException(Code)(Java Doc)
final public void transform(WritableRectIter iterator) throws RasterFormatException(Code)(Java Doc)

Fields inherited from java.util.AbstractList
protected transient int modCount(Code)(Java Doc)

Methods inherited from java.util.AbstractList
public boolean add(E e)(Code)(Java Doc)
public void add(int index, E element)(Code)(Java Doc)
public boolean addAll(int index, Collection<? extends E> c)(Code)(Java Doc)
public void clear()(Code)(Java Doc)
public boolean equals(Object o)(Code)(Java Doc)
abstract public E get(int index)(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
public int indexOf(Object o)(Code)(Java Doc)
public Iterator<E> iterator()(Code)(Java Doc)
public int lastIndexOf(Object o)(Code)(Java Doc)
public ListIterator<E> listIterator()(Code)(Java Doc)
public ListIterator<E> listIterator(int index)(Code)(Java Doc)
public E remove(int index)(Code)(Java Doc)
protected void removeRange(int fromIndex, int toIndex)(Code)(Java Doc)
public E set(int index, E element)(Code)(Java Doc)
public List<E> subList(int fromIndex, int toIndex)(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.