Package noaa.coastwatch.util
Enum Class DataVariable.AccessType
- All Implemented Interfaces:
Serializable
,Comparable<DataVariable.AccessType>
,java.lang.constant.Constable
- Enclosing class:
- DataVariable
The
AccessType
class describes a type of data accesss
that is anticipated. This can sometimes help to optimize internal
structures to better deliver data.- Since:
- 3.8.1
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFull resolution tiles of data, for example when performing data processing or displaying data at full resolution.A line of pixels being accessed, for example when performing a line survey or passing the mouse cursor over the screen.Single pixel access, for example when performing a point survey or a random sampling.Sparse resolution tiles of data, for example computing data stats, and displaying data at sub-full resolution. -
Method Summary
Modifier and TypeMethodDescriptionstatic DataVariable.AccessType
Returns the enum constant of this class with the specified name.static DataVariable.AccessType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
POINT
Single pixel access, for example when performing a point survey or a random sampling. -
LINE
A line of pixels being accessed, for example when performing a line survey or passing the mouse cursor over the screen. -
FULL_TILE
Full resolution tiles of data, for example when performing data processing or displaying data at full resolution. -
SPARSE_TILE
Sparse resolution tiles of data, for example computing data stats, and displaying data at sub-full resolution.
-
-
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
-