public final class CruiseCommandedValues extends Object implements IEquatable<CruiseCommandedValues>, ImmutableValueType
| Constructor and Description | 
|---|
CruiseCommandedValues()
Initializes a new instance. 
 | 
CruiseCommandedValues(double trueAirspeed,
                     double fuelFlowRate)
Initializes an instance with the provided parameters. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static boolean | 
equals(CruiseCommandedValues left,
      CruiseCommandedValues right)
Returns  
true if the two instances are exactly equal. | 
boolean | 
equals(Object obj)
Indicates whether another object is exactly equal to this instance. 
 | 
boolean | 
equalsType(CruiseCommandedValues other)
Indicates whether another instance of this type is exactly equal to this instance. 
 | 
double | 
getAirspeed()
Gets the commanded airspeed. 
 | 
double | 
getFuelFlowRate()
Gets the commanded rate of fuel flow. 
 | 
int | 
hashCode()
Returns a hash code for this instance, which is suitable for use in hashing algorithms and data structures like a hash table. 
 | 
static boolean | 
notEquals(CruiseCommandedValues left,
         CruiseCommandedValues right)
Returns  
true if the two instances are not exactly equal. | 
public CruiseCommandedValues()
public CruiseCommandedValues(double trueAirspeed,
                             double fuelFlowRate)
trueAirspeed - The commanded true airspeed.fuelFlowRate - The commanded rate of fuel flow.public final double getAirspeed()
public final double getFuelFlowRate()
public boolean equals(Object obj)
equals in class Objectobj - 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(), 
HashMappublic final boolean equalsType(@Nonnull CruiseCommandedValues other)
equalsType in interface IEquatable<CruiseCommandedValues>other - The instance to compare to this instance.true if other represents the same value as this instance; otherwise false.public int hashCode()
hashCode in class ObjectObject.equals(java.lang.Object), 
System.identityHashCode(java.lang.Object)public static boolean equals(@Nonnull CruiseCommandedValues left, @Nonnull CruiseCommandedValues right)
true if the two instances are exactly equal.left - The instance to compare to right.right - The instance to compare to left.true if left represents the same value as right; otherwise false.public static boolean notEquals(@Nonnull CruiseCommandedValues left, @Nonnull CruiseCommandedValues right)
true if the two instances are not exactly equal.left - The instance to compare to right.right - The instance to compare to left.true if left does not represent the same value as right; otherwise false.