Statistics
| Revision:

svn-gvsig-desktop / branches / org.gvsig.desktop-2018a / org.gvsig.desktop.library / org.gvsig.raster / org.gvsig.raster.lib / org.gvsig.raster.lib.buffer.api / src / main / java / org / gvsig / raster / lib / buffer / api / BandInfo.java @ 43803

History | View | Annotate | Download (1.99 KB)

1
package org.gvsig.raster.lib.buffer.api;
2

    
3
/* gvSIG. Desktop Geographic Information System.
4
 *
5
 * Copyright ? 2007-2016 gvSIG Association
6
 *
7
 * This program is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU General Public License
9
 * as published by the Free Software Foundation; either version 2
10
 * of the License, or (at your option) any later version.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 * GNU General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU General Public License
18
 * along with this program; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
 * MA  02110-1301, USA.
21
 *
22
 * For any additional information, do not hesitate to contact us
23
 * at info AT gvsig.com, or visit our website www.gvsig.com.
24
 */
25

    
26
import java.util.List;
27
import java.util.Map;
28

    
29
/**
30
 * This entity represents information about a band. Band information consists of
31
 * a name, a description and a list with band property such as data type,
32
 * units, source type sensor...
33
 * 
34
 * @author <a href="mailto:lmarques@disid.com">Lluis Marques</a>
35
 *
36
 */
37
public interface BandInfo {
38

    
39
    /**
40
     * Gets band of this information
41
     * 
42
     * @return Band of this information
43
     */
44
    public int getBand();
45

    
46
    /**
47
     * Gets data type of band
48
     * 
49
     * @return Data type of band. See {@link BufferManager} to check data types.
50
     */
51
    public int getDataType();
52

    
53
    /**
54
     * Gets name of band
55
     * 
56
     * @return Band name
57
     */
58
    public String getName();
59

    
60
    /**
61
     * Gets description of band
62
     * 
63
     * @return Band description
64
     */
65
    public String getDescription();
66

    
67
    /**
68
     * Gets a key value list with band information
69
     * 
70
     * @return List with band information
71
     */
72
    public List<Map.Entry<Object, Object>> getValues();
73

    
74
}