public static enum TileSource.TileUpdate extends java.lang.Enum<TileSource.TileUpdate>
IfNoneMatch
Server provides ETag header entry for all tiles
and supports conditional download via If-None-Match
header entry.ETag
Server provides ETag header entry for all tiles but
does not support conditional download via
If-None-Match
header entry.IfModifiedSince
Server provides Last-Modified header entry
for all tiles and supports conditional download via
If-Modified-Since
header entry.LastModified
Server provides Last-Modified header entry for
all tiles but does not support conditional download via
If-Modified-Since
header entry.None
The server does not support any of the listed
mechanisms.Enum Constant and Description |
---|
ETag |
IfModifiedSince |
IfNoneMatch |
LastModified |
None |
Modifier and Type | Method and Description |
---|---|
static TileSource.TileUpdate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TileSource.TileUpdate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TileSource.TileUpdate IfNoneMatch
public static final TileSource.TileUpdate ETag
public static final TileSource.TileUpdate IfModifiedSince
public static final TileSource.TileUpdate LastModified
public static final TileSource.TileUpdate None
public static TileSource.TileUpdate[] values()
for (TileSource.TileUpdate c : TileSource.TileUpdate.values()) System.out.println(c);
public static TileSource.TileUpdate valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null