FloatAngleMatrix.java
package org.djunits.value.vfloat.matrix;
import org.djunits.unit.AngleUnit;
import org.djunits.value.StorageType;
import org.djunits.value.ValueException;
import org.djunits.value.vfloat.scalar.FloatAngle;
/**
* Immutable FloatAngle Matrix.
* <p>
* Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
* BSD-style license. See <a href="http://djunits.org/docs/license.html">DJUNITS License</a>.
* <p>
* $LastChangedDate: 2015-09-29 14:14:28 +0200 (Tue, 29 Sep 2015) $, @version $Revision: 73 $, by $Author: pknoppers $, initial
* version Sep 5, 2015 <br>
* @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
* @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
*/
public class FloatAngleMatrix extends AbstractFloatMatrixRel<AngleUnit, FloatAngleMatrix, MutableFloatAngleMatrix, FloatAngle>
{
/** */
private static final long serialVersionUID = 20151006L;
/**
* Construct a new Relative Immutable FloatAngleMatrix.
* @param values float[][]; the values of the entries in the new Relative Immutable FloatAngleMatrix
* @param unit U; the unit of the new Relative Immutable FloatAngleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values is null
*/
public FloatAngleMatrix(final float[][] values, final AngleUnit unit, final StorageType storageType) throws ValueException
{
super(values, unit, storageType);
}
/**
* Construct a new Relative Immutable FloatAngleMatrix.
* @param values FloatScalar.Rel<U>[][]; the values of the entries in the new Relative Immutable FloatAngleMatrix
* @param storageType the data type to use (e.g., DENSE or SPARSE)
* @throws ValueException when values has zero entries
*/
public FloatAngleMatrix(final FloatAngle[][] values, final StorageType storageType) throws ValueException
{
super(values, storageType);
}
/**
* Construct a new Relative Immutable FloatAngleMatrix.
* @param data an internal data object
* @param unit the unit
*/
FloatAngleMatrix(final FloatMatrixData data, final AngleUnit unit)
{
super(data, unit);
}
/** {@inheritDoc} */
@Override
public final FloatAngleMatrix toDense()
{
return this.data.isDense() ? this : instantiateType(this.data.toDense(), getUnit());
}
/** {@inheritDoc} */
@Override
public final FloatAngleMatrix toSparse()
{
return this.data.isSparse() ? this : instantiateType(this.data.toSparse(), getUnit());
}
/** {@inheritDoc} */
@Override
protected final FloatAngleMatrix instantiateType(final FloatMatrixData fmd, final AngleUnit unit)
{
return new FloatAngleMatrix(fmd, unit);
}
/** {@inheritDoc} */
@Override
protected final MutableFloatAngleMatrix instantiateMutableType(final FloatMatrixData fmd, final AngleUnit unit)
{
return new MutableFloatAngleMatrix(fmd, unit);
}
/** {@inheritDoc} */
@Override
protected final FloatAngle instantiateScalar(final float value, final AngleUnit unit)
{
return new FloatAngle(value, unit);
}
}