001/*
002 * ============================================================================
003 * Copyright © 2002-2023 by Thomas Thrien.
004 * All Rights Reserved.
005 * ============================================================================
006 * Licensed to the public under the agreements of the GNU Lesser General Public
007 * License, version 3.0 (the "License"). You may obtain a copy of the License at
008 *
009 *      http://www.gnu.org/licenses/lgpl.html
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
013 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
014 * License for the specific language governing permissions and limitations
015 * under the License.
016 */
017
018package org.tquadrat.foundation.value;
019
020import static org.apiguardian.api.API.Status.STABLE;
021
022import java.io.Serial;
023import java.math.BigDecimal;
024
025import org.apiguardian.api.API;
026import org.tquadrat.foundation.annotation.ClassVersion;
027import org.tquadrat.foundation.value.api.ValueBase;
028
029/**
030 *  A value class for forces.
031 *
032 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
033 *  @version $Id: ForceValue.java 1073 2023-10-01 11:08:51Z tquadrat $
034 *  @since 0.3.0
035 *
036 *  @UMLGraph.link
037 */
038@ClassVersion( sourceVersion = "$Id: ForceValue.java 1073 2023-10-01 11:08:51Z tquadrat $" )
039@API( status = STABLE, since = "0.3.0" )
040public final class ForceValue extends ValueBase<Force,ForceValue>
041{
042        /*------------------------*\
043    ====** Static Initialisations **===========================================
044        \*------------------------*/
045    /**
046     *  The serial version UID for objects of this class: {@value}.
047     *
048     *  @hidden
049     */
050    @Serial
051    private static final long serialVersionUID = 1729884766468723788L;
052
053        /*--------------*\
054    ====** Constructors **=====================================================
055        \*--------------*/
056    /**
057     *  Creates a new {@code ForceValue} instance.
058     *
059     *  @param  dimension   The dimension.
060     *  @param  value   The value.
061     */
062    public ForceValue( final Force dimension, final BigDecimal value )
063    {
064        //---* Daddy's performing the null check ... *-------------------------
065        //noinspection unchecked
066        super( dimension, value, DEFAULT_VALIDATOR );
067    }   //  ForceValue()
068
069    /**
070     *  Creates a new {@code ForceValue} instance.
071     *
072     *  @param  dimension   The dimension.
073     *  @param  value   The value; it must be possible to parse the given
074     *      String into a
075     *      {@link BigDecimal}.
076     *  @throws NumberFormatException   The provided value cannot be converted
077     *      into a {@code BigDecimal}.
078     */
079    public ForceValue( final Force dimension, final String value ) throws NumberFormatException
080    {
081        //---* Daddy's performing the null check ... *-------------------------
082        //noinspection unchecked
083        super( dimension, value, DEFAULT_VALIDATOR );
084    }   //  ForceValue()
085
086    /**
087     *  Creates a new {@code ForceValue} instance.
088     *
089     *  @param  <N> The type of {@code value}.
090     *  @param  dimension   The dimension.
091     *  @param  value   The value.
092     */
093    public <N extends Number> ForceValue( final Force dimension, final N value )
094    {
095        //---* Daddy's performing the null check ... *-------------------------
096        //noinspection unchecked
097        super( dimension, value, DEFAULT_VALIDATOR );
098    }   //  ForceValue()
099
100        /*---------*\
101    ====** Methods **==========================================================
102        \*---------*/
103    /**
104     *  {@inheritDoc}
105     */
106    @Override
107    public final ForceValue clone()
108    {
109        @SuppressWarnings( "cast" )
110        final var retValue = super.clone();
111
112        //---* Done *----------------------------------------------------------
113        return retValue;
114    }   //  clone()
115}
116//  class ForceValue
117
118/*
119 *  End of File
120 */