Statistics
| Revision:

root / trunk / libraries / libjni-ecwcompress / src / es / gva / cit / jecwcompress / CompressFormat.java @ 1429

History | View | Annotate | Download (1.49 KB)

1
/**********************************************************************
2
 * $Id: CompressFormat.java 1429 2005-02-10 12:49:04Z igbrotru $
3
 *
4
 * Name:     CompressFormat.java
5
 * Project:  
6
 * Purpose:  
7
 * Author:   Nacho Brodin, brodin_ign@gva.es
8
 *
9
 **********************************************************************/
10
/*Copyright (C) 2004  Nacho Brodin <brodin_ign@gva.es>
11

12
 This program is free software; you can redistribute it and/or
13
 modify it under the terms of the GNU General Public License
14
 as published by the Free Software Foundation; either version 2
15
 of the License, or (at your option) any later version.
16

17
 This program is distributed in the hope that it will be useful,
18
 but WITHOUT ANY WARRANTY; without even the implied warranty of
19
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
 GNU General Public License for more details.
21

22
 You should have received a copy of the GNU General Public License
23
 along with this program; if not, write to the Free Software
24
 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
 */
26

    
27

    
28
/**
29
 * @author Nacho Brodin <brodin_ign@gva.es>.<BR> Equipo de desarrollo gvSIG.<BR> http://www.gvsig.gva.es
30
 * @version 0.0
31
 * @link http://www.gvsig.gva.es
32
 */
33

    
34
package es.gva.cit.jecwcompress;
35

    
36
public class CompressFormat{
37
        
38
         public final String COMPRESS_NONE            = "NCSCS_NONE";
39
         public final String COMPRESS_UINT8                = "NCSCS_GREYSCALE";
40
         public final String COMPRESS_YUV                = "NCSCS_YUV";
41
         public final String COMPRESS_MULTI                = "NCSCS_MULTIBAND";
42
         public final String COMPRESS_RGB                = "NCSCS_sRGB";
43
                 
44
}