Enum Class DataVariable.AccessType

java.lang.Object
java.lang.Enum<DataVariable.AccessType>
noaa.coastwatch.util.DataVariable.AccessType
All Implemented Interfaces:
Serializable, Comparable<DataVariable.AccessType>, java.lang.constant.Constable
Enclosing class:
DataVariable

public static enum DataVariable.AccessType extends Enum<DataVariable.AccessType>
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
  • Enum Constant Details

    • POINT

      public static final DataVariable.AccessType POINT
      Single pixel access, for example when performing a point survey or a random sampling.
    • LINE

      public static final DataVariable.AccessType LINE
      A line of pixels being accessed, for example when performing a line survey or passing the mouse cursor over the screen.
    • FULL_TILE

      public static final DataVariable.AccessType FULL_TILE
      Full resolution tiles of data, for example when performing data processing or displaying data at full resolution.
    • SPARSE_TILE

      public static final DataVariable.AccessType SPARSE_TILE
      Sparse resolution tiles of data, for example computing data stats, and displaying data at sub-full resolution.
  • Method Details

    • values

      public static DataVariable.AccessType[] 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

      public static DataVariable.AccessType valueOf(String name)
      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 name
      NullPointerException - if the argument is null