|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ImageTypePolicy>
org.geotools.image.io.mosaic.ImageTypePolicy
public enum ImageTypePolicy
The policy for computing image types
in a mosaic.
MosaicImageReadParam.getImageTypePolicy()
,
MosaicImageReader.getDefaultImageTypePolicy()
Enum Constant Summary | |
---|---|
ALWAYS_ARGB
Returns a single type specifier for images of TYPE_INT_ARGB . |
|
SUPPORTED_BY_ALL
Returns type specifiers that are supported by every tiles. |
|
SUPPORTED_BY_ONE
Returns type specifiers that are supported by one tile, selected arbitrary. |
Method Summary | |
---|---|
static ImageTypePolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageTypePolicy[] |
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 |
---|
public static final ImageTypePolicy SUPPORTED_BY_ALL
public static final ImageTypePolicy SUPPORTED_BY_ONE
When Java assertions are enabled, MosaicImageReader will ensures that this
policy produces the same result than the SUPPORTED_BY_ALL
policy.
public static final ImageTypePolicy ALWAYS_ARGB
TYPE_INT_ARGB
. This policy should
be used only when tiles are known in advance to be compatible with the ARGB model, and
this model is wanted.
Method Detail |
---|
public static ImageTypePolicy[] values()
for (ImageTypePolicy c : ImageTypePolicy.values()) System.out.println(c);
public static ImageTypePolicy 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |