public class PulsedSignalData extends Object
Constructor and Description |
---|
PulsedSignalData(double pulseRepetitionFrequency,
double pulseWidth,
int pulseCount)
Creates a new instance.
|
PulsedSignalData(PulsedSignalData existingInstance)
Initializes a new instance as a copy of an existing instance.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object obj)
Indicates whether another object is exactly equal to this instance.
|
int |
getPulseCount()
Gets the pulse count.
|
double |
getPulseRepetitionFrequency()
Gets the pulse repetition frequency.
|
double |
getPulseWidth()
Gets the pulse width.
|
int |
hashCode()
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table.
|
public PulsedSignalData(double pulseRepetitionFrequency, double pulseWidth, int pulseCount)
pulseRepetitionFrequency
- The pulse repetition frequency.pulseWidth
- The pulse width.pulseCount
- The pulse count.public PulsedSignalData(@Nonnull PulsedSignalData existingInstance)
existingInstance
- The existing instance to copy.ArgumentNullException
- Thrown when existingInstance
is null
.public final double getPulseRepetitionFrequency()
public final double getPulseWidth()
public final int getPulseCount()
public boolean equals(Object obj)
equals
in class Object
obj
- The object to compare to this instance.true
if obj
is an instance of this type and represents the same value as this instance; otherwise false
.Object.hashCode()
,
HashMap
public int hashCode()
hashCode
in class Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)