public final class SoundInformation
extends java.lang.Object
SoundInformation
object
only once and reuse it every time you need it. It's safe to use the same
SoundInformation
reference for several players and in
multiple threads.Constructor and Description |
---|
SoundInformation(java.io.File file)
Creates a new sound information object and loads a sound from a file.
|
SoundInformation(Plugin plugin,
java.lang.String resource)
Creates a new sound information object and loads a sound from the plugin jar file.
|
SoundInformation(java.lang.String filepath)
Creates a new sound information object and loads a sound from a file.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o) |
java.lang.String |
getChecksum()
Gets the MD5 checksum of this file.
|
byte[] |
getData()
Gets the byte data of the file.
|
java.lang.String |
getExtension()
Gets the file extension.
|
java.lang.String |
getFilename()
Gets the filename.
|
int |
hashCode() |
boolean |
isCached() |
boolean |
isStreamed()
Determines if the sound is streamed or not.
|
void |
setCached(boolean cached) |
void |
setStreamed(boolean stream)
Determines if the sound should be streamed or not.
|
public SoundInformation(Plugin plugin, java.lang.String resource)
plugin
- a reference to the plugin. This is required to make sure the game
loads the resource from the correct plugin jar.resource
- the path to the resource (inside the jar file).public SoundInformation(java.lang.String filepath)
filepath
- the path to the sound file on the harddrive.SoundInformation(java.io.File)
public SoundInformation(java.io.File file)
file
- the file representing the path to the sound on the harddrive.SoundInformation(java.lang.String)
public void setStreamed(boolean stream)
stream
- true to enable streaming, false to disable it (default).public boolean isStreamed()
public void setCached(boolean cached)
public boolean isCached()
public byte[] getData()
public java.lang.String getFilename()
public java.lang.String getExtension()
public java.lang.String getChecksum()
public boolean equals(java.lang.Object o)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object