Package edu.harvard.hul.ois.jhove
Enum Class AnalogDigitalFlagType
- All Implemented Interfaces:
Serializable,Comparable<AnalogDigitalFlagType>,java.lang.constant.Constable
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
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEnumeration instance for analog dataEnumeration instance for FILE digital dataEnumeration instance for physical digital data -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic AnalogDigitalFlagTypeReturns the enum constant of this class with the specified name.static AnalogDigitalFlagType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANALOG
Enumeration instance for analog data -
PHYS_DIGITAL
Enumeration instance for physical digital data -
FILE_DIGITAL
Enumeration instance for FILE digital data
-
-
Field Details
-
value
A String value for the type
-
-
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
-