public enum GvrsCacheSize extends Enum<GvrsCacheSize>
Enum Constant and Description |
---|
Large
A larger cache size intended to support higher performance applications
and creating new raster files.
|
Medium
A moderate cache size providing better performance than the smaller size,
though consuming additional memory, this setting is the default value.
|
Small
The smallest cache size, makes conservative use of memory.
|
Modifier and Type | Method and Description |
---|---|
static GvrsCacheSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GvrsCacheSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GvrsCacheSize Small
The maximum memory size for this specification is currently 2 megabytes, but that value is subject to change in future versions of this code.
public static final GvrsCacheSize Medium
The maximum memory size for this specification is currently 12 megabytes, but that value is subject to change in future versions of this code.
public static final GvrsCacheSize Large
The maximum memory size for this specification is currently 256 megabytes, but that value is subject to change in future versions of this code.
public static GvrsCacheSize[] values()
for (GvrsCacheSize c : GvrsCacheSize.values()) System.out.println(c);
public static GvrsCacheSize valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022. All rights reserved.