Enum Class DecoderHint

java.lang.Object
java.lang.Enum<DecoderHint>
is.galia.codec.DecoderHint
All Implemented Interfaces:
Serializable, Comparable<DecoderHint>, Constable

public enum DecoderHint extends Enum<DecoderHint>
  • Enum Constant Details

    • ALREADY_ORIENTED

      public static final DecoderHint ALREADY_ORIENTED
      Returned from a decoder. The decoder has already transformed the image according to its embedded orientation property.
    • IGNORED_REGION

      public static final DecoderHint IGNORED_REGION
      Returned from a decoder. The decoder has ignored the region argument and is returning the full region.
    • IGNORED_SCALE

      public static final DecoderHint IGNORED_SCALE
      Returned from a decoder. The decoder has ignored the scales argument and is returning the full scale.
    • NEEDS_DIFFERENTIAL_SCALE

      public static final DecoderHint NEEDS_DIFFERENTIAL_SCALE
      Returned from a decoder. The differential scales have not been applied yet, so will need to be.
  • Method Details

    • values

      public static DecoderHint[] 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 DecoderHint 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