org.openstreetmap.gui.jmapviewer.tilesources
Enum ScanexTileSource.ScanexLayer

java.lang.Object
  extended by java.lang.Enum<ScanexTileSource.ScanexLayer>
      extended by org.openstreetmap.gui.jmapviewer.tilesources.ScanexTileSource.ScanexLayer
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ScanexTileSource.ScanexLayer>
Enclosing class:
ScanexTileSource

private static enum ScanexTileSource.ScanexLayer
extends java.lang.Enum<ScanexTileSource.ScanexLayer>


Enum Constant Summary
IRS
           
SPOT
           
 
Field Summary
private  java.lang.String name
           
private  java.lang.String uri
           
 
Method Summary
 java.lang.String getName()
           
 java.lang.String getUri()
           
static ScanexTileSource.ScanexLayer valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ScanexTileSource.ScanexLayer[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

IRS

public static final ScanexTileSource.ScanexLayer IRS

SPOT

public static final ScanexTileSource.ScanexLayer SPOT
Field Detail

name

private java.lang.String name

uri

private java.lang.String uri
Method Detail

values

public static ScanexTileSource.ScanexLayer[] 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 (ScanexTileSource.ScanexLayer c : ScanexTileSource.ScanexLayer.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ScanexTileSource.ScanexLayer valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getName

public java.lang.String getName()

getUri

public java.lang.String getUri()


JOSM