Enum Class AnalogDigitalFlagType

java.lang.Object
java.lang.Enum<AnalogDigitalFlagType>
edu.harvard.hul.ois.jhove.AnalogDigitalFlagType
All Implemented Interfaces:
Serializable, Comparable<AnalogDigitalFlagType>, java.lang.constant.Constable

public enum AnalogDigitalFlagType extends Enum<AnalogDigitalFlagType>
This class defines enumerated types for the analog/digital flag of AESAudioMetadata. Applications will not create or modify instances of this class, but will use one of the predefined AnalogDigitalFlagType instances.
Author:
Gary McGath
  • Enum Constant Details

    • ANALOG

      public static final AnalogDigitalFlagType ANALOG
      Enumeration instance for analog data
    • PHYS_DIGITAL

      public static final AnalogDigitalFlagType PHYS_DIGITAL
      Enumeration instance for physical digital data
    • FILE_DIGITAL

      public static final AnalogDigitalFlagType FILE_DIGITAL
      Enumeration instance for FILE digital data
  • Field Details

    • value

      public final String value
      A String value for the type
  • Method Details

    • values

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