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

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

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

final class StringValue
    extends Value
{
    StringValue( final String value )
    {
        super( ValueTypes.STRING, value );
    }

    StringValue( final StringValue source )
    {
        super( ValueTypes.STRING, source.getObject() );
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy