Uses of Class
com.tagtraum.audiokern.AudioArtwork.Kind
-
Packages that use AudioArtwork.Kind Package Description com.tagtraum.audiokern Core audio classes for decoding, playing and analyzing audio data. -
-
Uses of AudioArtwork.Kind in com.tagtraum.audiokern
Methods in com.tagtraum.audiokern that return AudioArtwork.Kind Modifier and Type Method Description AudioArtwork.Kind
AudioArtwork. getKind()
Kind of artwork.AudioArtwork.Kind
StandardAudioArtwork. getKind()
static AudioArtwork.Kind
AudioArtwork.Kind. valueOf(String name)
Returns the enum constant of this type with the specified name.static AudioArtwork.Kind[]
AudioArtwork.Kind. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.tagtraum.audiokern with parameters of type AudioArtwork.Kind Modifier and Type Method Description static AudioArtwork
StandardAudioArtwork. create(URL imageURL, AudioArtwork.Kind kind)
Creates anAudioArtwork
.static AudioArtwork
StandardAudioArtwork. createLazily(URL imageURL, AudioArtwork.Kind kind)
Creates anAudioArtwork
object without actually loading the image.Constructors in com.tagtraum.audiokern with parameters of type AudioArtwork.Kind Constructor Description StandardAudioArtwork(AudioArtwork audioArtwork, AudioArtwork.Kind kind)
Creates a copy of the given artwork while allowing to change the kind.StandardAudioArtwork(Image image, AudioArtwork.Kind kind)
Create anAudioArtwork
from the given image.StandardAudioArtwork(File imageFile, AudioArtwork.Kind kind)
Create anAudioArtwork
from the given file.StandardAudioArtwork(InputStream in, AudioArtwork.Kind kind, URI uri)
Create anAudioArtwork
from the given stream.
-