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

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

There is a newer version: 7.14.4
Show newest version
package com.enonic.xp.data;

final class XmlValue
    extends Value
{
    XmlValue( final String value )
    {
        super( ValueTypes.XML, value );
    }

    XmlValue( final XmlValue source )
    {
        super( ValueTypes.XML, source.getObject() );
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy