Package com.digimarc.dms.readers
Enum Class BaseReader.AudioSymbology
- All Implemented Interfaces:
BaseReader.Symbology
,Serializable
,Comparable<BaseReader.AudioSymbology>
,Constable
- Enclosing class:
- BaseReader
public static enum BaseReader.AudioSymbology
extends Enum<BaseReader.AudioSymbology>
implements BaseReader.Symbology
Audio symbologies are intended for use with the audio-based readers (
AudioReader
and AudioCaptureReader
). They will be ignored if they are passed into an image reader.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionint
addSymbology
(int baseValue) int
getName()
static BaseReader.AudioSymbology
Returns the enum constant of this class with the specified name.static BaseReader.AudioSymbology[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.boolean
withinMask
(int readerMask) Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
Audio_Digimarc
Audio Digimarc symbology.
This symbology is for decoding Digimarc Barcode for Audio.
-
-
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
-
getName
- Specified by:
getName
in interfaceBaseReader.Symbology
-
getBitmaskValue
public int getBitmaskValue()- Specified by:
getBitmaskValue
in interfaceBaseReader.Symbology
-
withinMask
public boolean withinMask(int readerMask) - Specified by:
withinMask
in interfaceBaseReader.Symbology
-
addSymbology
public int addSymbology(int baseValue) - Specified by:
addSymbology
in interfaceBaseReader.Symbology
-