Package com.luciad.earth.tileset.raster
Enum Class TLcdEarthCompositeImageTileSet.TileProductionMode
java.lang.Object
java.lang.Enum<TLcdEarthCompositeImageTileSet.TileProductionMode>
com.luciad.earth.tileset.raster.TLcdEarthCompositeImageTileSet.TileProductionMode
- All Implemented Interfaces:
Serializable
,Comparable<TLcdEarthCompositeImageTileSet.TileProductionMode>
,Constable
- Enclosing class:
TLcdEarthCompositeImageTileSet
public static enum TLcdEarthCompositeImageTileSet.TileProductionMode
extends Enum<TLcdEarthCompositeImageTileSet.TileProductionMode>
An enumeration of modes used to steer the tile production behaviour.
- Since:
- 8.2
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA tile is only available if all image layers have a tile available and there is at least 1 image layer.A tile is only available if 1 or more image layers have a tile available.LikeONE_OR_MORE_IMAGES
a tile is only available if 1 or more image layers have a tile available, but if a tile is available an attempt is made to create the missing tiles by falling back to a lower level. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ONE_OR_MORE_IMAGES
A tile is only available if 1 or more image layers have a tile available. -
ONE_OR_MORE_IMAGES_WITH_FALLBACK
public static final TLcdEarthCompositeImageTileSet.TileProductionMode ONE_OR_MORE_IMAGES_WITH_FALLBACKLikeONE_OR_MORE_IMAGES
a tile is only available if 1 or more image layers have a tile available, but if a tile is available an attempt is made to create the missing tiles by falling back to a lower level. -
ALL_IMAGES
A tile is only available if all image layers have a tile available and there is at least 1 image layer.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-