|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.sound.sampled.ReverbType
public class ReverbType
This represents a reverb effect which can be applied to an audio signal.
| Constructor Summary | |
|---|---|
protected |
ReverbType(String name,
int earlyDelay,
float earlyInten,
int lateDelay,
float lateInten,
int decay)
Create a new ReverbType given its attributes. |
| Method Summary | |
|---|---|
boolean |
equals(Object o)
equals compares this object to another object. |
int |
getDecayTime()
Return the decay time. |
int |
getEarlyReflectionDelay()
Return the early reflection delay. |
float |
getEarlyReflectionIntensity()
Return the early reflection intensity. |
int |
getLateReflectionDelay()
Return the late reflection delay. |
float |
getLateReflectionIntensity()
Return the late reflection intensity. |
String |
getName()
Return the name of this ReverbType. |
int |
hashCode()
hashCode returns a hash code for this object. |
String |
toString()
Return a description of this ReverbType. |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
protected ReverbType(String name,
int earlyDelay,
float earlyInten,
int lateDelay,
float lateInten,
int decay)
name - the name of this typeearlyDelay - the early delay time in microsecondsearlyInten - the early intensity in decibelslateDelay - the late delay time in microsecondslateInten - the late intensity in decibelsdecay - the decay time in microseconds| Method Detail |
|---|
public final boolean equals(Object o)
ObjectEquals must be symmetric (a.equals(b) == b.equals(a)), reflexive (a.equals(a)==true) and transitive (a.equals(b) && b.equals(c) IMPLIES (a.equals(c))) and not change over time (a.equals(b) == a.equals(b)). a.equals(null) should always return false.
If a.equals(b) is true for two objects a and b, then a.hashCode()==b.hashCode() must hold.
The default implementation of equals returns this==other.
equals in class Objecto - the other object.
public final int hashCode()
ObjectThe default implementation returns System.identityHashCode(this).
hashCode in class Objectpublic final int getDecayTime()
public final int getEarlyReflectionDelay()
public final float getEarlyReflectionIntensity()
public final int getLateReflectionDelay()
public final float getLateReflectionIntensity()
public String getName()
public final String toString()
toString in class Object
|
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||