public final class PointScattererFrequencyBandCollection extends DefinitionalObjectCollection<PointScattererFrequencyBand>
PointScattererFrequencyBand
objects. The PointScattererFrequencyBandCollection
is valid for frequencies ranging from
MinimumFrequency
(get
) to MaximumFrequency
(get
). The minimum and maximum
frequencies for the collection default to CommunicationsConstants.MinimumRfFrequency
and CommunicationsConstants.MaximumRfFrequency
respectively.
The LowerFrequency
(get
) value for each PointScattererFrequencyBand
instance in the collection must be greater than or equal to
MinimumFrequency
(get
) and less than MaximumFrequency
(get
). Band insert and add operations
on the collection will validate the band's lower frequency and will also check to make sure that there is not an existing band in the collection with the same lower frequency value.Constructor and Description |
---|
PointScattererFrequencyBandCollection()
Initializes a new instance.
|
PointScattererFrequencyBandCollection(double minimumFrequency,
double maximumFrequency)
Initializes a new instance.
|
PointScattererFrequencyBandCollection(double minimumFrequency,
double maximumFrequency,
ScatteringCoefficient scatteringCoefficient)
Initializes a new instance.
|
PointScattererFrequencyBandCollection(ScatteringCoefficient scatteringCoefficient)
Initializes a new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
add(double lowerFrequency,
ScatteringCoefficient scatteringCoefficient)
Adds a new point scattering frequency band with the given lower frequency and scattering coefficient.
|
protected boolean |
checkForSameDefinition(DefinitionalObjectCollection<PointScattererFrequencyBand> other)
Checks to determine if another instance has the same definition as this instance and
returns
true if it does. |
Object |
clone(CopyContext context)
Clones this object using the specified context.
|
protected int |
computeCurrentDefinitionHashCode()
Computes a hash code based on the current properties of this object.
|
double |
getMaximumFrequency()
Gets the maximum frequency for the overall frequency band of the collection.
|
double |
getMinimumFrequency()
Gets the minimum frequency for the overall frequency band of the collection.
|
protected void |
insertItem(int index,
PointScattererFrequencyBand item)
Inserts an element into the
DefinitionalObjectCollection at the specified index. |
protected void |
setItem(int index,
PointScattererFrequencyBand item)
Replaces the element at the specified
index . |
addRange, clearItems, enumerateDependencies, freeze, freezeAggregatedObjects, getDefinitionHashCode, getIsFrozen, isSameDefinition, removeItem, throwIfFrozen
add, add, addAll, addAll, clear, contains, containsAll, get, getItems, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, replaceAll, sort, spliterator
parallelStream, removeIf, stream
public PointScattererFrequencyBandCollection()
MinimumFrequency
(get
) defaults to CommunicationsConstants.MinimumRfFrequency
and MaximumFrequency
(get
) defaults to
CommunicationsConstants.MaximumRfFrequency
public PointScattererFrequencyBandCollection(ScatteringCoefficient scatteringCoefficient)
MinimumFrequency
(get
) defaults to CommunicationsConstants.MinimumRfFrequency
and MaximumFrequency
(get
) defaults to
CommunicationsConstants.MaximumRfFrequency
scatteringCoefficient
- The scattering coefficient for the first band in the collection.public PointScattererFrequencyBandCollection(double minimumFrequency, double maximumFrequency, ScatteringCoefficient scatteringCoefficient)
minimumFrequency
- The minimum frequency for the overall frequency band for the collection.maximumFrequency
- The maximum frequency for the overall frequency band for the collection.scatteringCoefficient
- The scattering coefficient for the first band in the collection.public PointScattererFrequencyBandCollection(double minimumFrequency, double maximumFrequency)
minimumFrequency
- The minimum frequency for the overall frequency band for the collection.maximumFrequency
- The maximum frequency for the overall frequency band for the collection.public Object clone(CopyContext context)
This method should be implemented to call a copy constructor on the class of the
object being cloned. The copy constructor should take the CopyContext
as a parameter
in addition to the existing instance to copy. The copy constructor should first call
CopyContext.addObjectMapping(T, T)
to identify the newly constructed instance
as a copy of the existing instance. It should then copy all fields, using
CopyContext.updateReference(T)
to copy any reference fields.
A typical implementation of ICloneWithContext
:
public static class MyClass implements ICloneWithContext {
public MyClass(MyClass existingInstance, CopyContext context) {
context.addObjectMapping(existingInstance, this);
someReference = context.updateReference(existingInstance.someReference);
}
@Override
public final Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
}
In general, all fields that are reference types should be copied with a call to
CopyContext.updateReference(T)
. There are a couple of exceptions:
If one of these exceptions applies, the CopyContext
should be given an opportunity
to update the reference before the reference is copied explicitly. Use
CopyContext.updateReference(T)
to update the reference. If CopyContext.updateReference(T)
returns
the original object, indicating that the context does not have a replacement registered,
then copy the object manually by invoking a Clone method, a copy constructor, or by manually
constructing a new instance and copying the values.
alwaysCopy = context.updateReference(existingInstance.alwaysCopy);
if (existingInstance.alwaysCopy != null && alwaysCopy == existingInstance.alwaysCopy) {
alwaysCopy = (AlwaysCopy) existingInstance.alwaysCopy.clone(context);
}
If you are implementing an evaluator (a class that implements IEvaluator
), the
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
method shares some responsibilities with the
copy context constructor. Code duplication can be avoided by doing the following:
CopyContext.updateReference(T)
. You should still call CopyContext.updateReference(T)
on any references to
non-evaluators.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as the last line in the constructor and pass it the
same CopyContext
passed to the constructor.
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
as normal. See the reference documentation for
IEvaluator.updateEvaluatorReferences(agi.foundation.infrastructure.CopyContext)
for more information on implementing that method.
public MyClass(MyClass existingInstance, CopyContext context) {
super(existingInstance, context);
someReference = context.updateReference(existingInstance.someReference);
evaluatorReference = existingInstance.evaluatorReference;
updateEvaluatorReferences(context);
}
@Override
public void updateEvaluatorReferences(CopyContext context) {
evaluatorReference = context.updateReference(evaluatorReference);
}
@Override
public Object clone(CopyContext context) {
return new MyClass(this, context);
}
private Object someReference;
private IEvaluator evaluatorReference;
clone
in interface ICloneWithContext
clone
in class DefinitionalObjectCollection<PointScattererFrequencyBand>
context
- The context to use to perform the copy.protected boolean checkForSameDefinition(DefinitionalObjectCollection<PointScattererFrequencyBand> other)
DefinitionalObjectCollection
true
if it does. Derived classes MUST override this method and check
all new fields introduced by the derived class for definitional equivalence. It is NOT necessary
to check base class fields because the base class will already have done that. When overriding this method,
you should NOT call the base implementation because it will return false
for all derived-class instances.
Derived classes should check the type of other
to preserve the symmetric nature of IEquatableDefinition.isSameDefinition(java.lang.Object)
.checkForSameDefinition
in class DefinitionalObjectCollection<PointScattererFrequencyBand>
other
- The other instance to compare to this one.true
if the two objects are defined equivalently; otherwise false
.protected int computeCurrentDefinitionHashCode()
PointScattererFrequencyBandCollection.checkForSameDefinition(agi.foundation.infrastructure.DefinitionalObjectCollection<agi.foundation.communications.PointScattererFrequencyBand>)
method.computeCurrentDefinitionHashCode
in class DefinitionalObjectCollection<PointScattererFrequencyBand>
protected void setItem(int index, PointScattererFrequencyBand item)
DefinitionalObjectCollection
index
.setItem
in class DefinitionalObjectCollection<PointScattererFrequencyBand>
index
- The zero-based index of the element to replace.item
- The new value for the element at the specified index. The value can be null
for reference types.protected void insertItem(int index, PointScattererFrequencyBand item)
DefinitionalObjectCollection
DefinitionalObjectCollection
at the specified index.insertItem
in class DefinitionalObjectCollection<PointScattererFrequencyBand>
index
- The zero-based index at which item
should be inserted.item
- The object to insert. The value can be null for reference types.public final void add(double lowerFrequency, ScatteringCoefficient scatteringCoefficient)
lowerFrequency
- The frequency band lower frequency, in hertz.scatteringCoefficient
- The scattering coefficient instance.public final double getMinimumFrequency()
public final double getMaximumFrequency()