Package org.openjump.core.ui.util
Enum LayerableUtil.TypeFile
- java.lang.Object
-
- java.lang.Enum<LayerableUtil.TypeFile>
-
- org.openjump.core.ui.util.LayerableUtil.TypeFile
-
- All Implemented Interfaces:
Serializable
,Comparable<LayerableUtil.TypeFile>
- Enclosing class:
- LayerableUtil
public static enum LayerableUtil.TypeFile extends Enum<LayerableUtil.TypeFile>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LayerableUtil.TypeFile
valueOf(String name)
Returns the enum constant of this type with the specified name.static LayerableUtil.TypeFile[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASC
public static final LayerableUtil.TypeFile ASC
-
CSV
public static final LayerableUtil.TypeFile CSV
-
DXF
public static final LayerableUtil.TypeFile DXF
-
FLT
public static final LayerableUtil.TypeFile FLT
-
TIF
public static final LayerableUtil.TypeFile TIF
-
TIFF
public static final LayerableUtil.TypeFile TIFF
-
JPG
public static final LayerableUtil.TypeFile JPG
-
JPEG
public static final LayerableUtil.TypeFile JPEG
-
PNG
public static final LayerableUtil.TypeFile PNG
-
GIF
public static final LayerableUtil.TypeFile GIF
-
GRD
public static final LayerableUtil.TypeFile GRD
-
JP2
public static final LayerableUtil.TypeFile JP2
-
BMP
public static final LayerableUtil.TypeFile BMP
-
ECW
public static final LayerableUtil.TypeFile ECW
-
MrSID
public static final LayerableUtil.TypeFile MrSID
-
TXT
public static final LayerableUtil.TypeFile TXT
-
SHP
public static final LayerableUtil.TypeFile SHP
-
JML
public static final LayerableUtil.TypeFile JML
-
GML
public static final LayerableUtil.TypeFile GML
-
KML
public static final LayerableUtil.TypeFile KML
-
OSM
public static final LayerableUtil.TypeFile OSM
-
-
Method Detail
-
values
public static LayerableUtil.TypeFile[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LayerableUtil.TypeFile c : LayerableUtil.TypeFile.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LayerableUtil.TypeFile valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-