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

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

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

final class LongValue
    extends Value
{
    LongValue( final Long value )
    {
        super( ValueTypes.LONG, value );
    }

    LongValue( final LongValue source )
    {
        super( ValueTypes.LONG, source.getObject() );
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy