All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.data.DoubleValue Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.data;

final class DoubleValue
    extends Value
{
    DoubleValue( final Double value )
    {
        super( ValueTypes.DOUBLE, value );
    }

    DoubleValue( final DoubleValue source )
    {
        super( ValueTypes.DOUBLE, source.getObject() );
    }

    @Override
    Value copy( final PropertyTree tree )
    {
        return new DoubleValue( this );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy