org.modeshape.jcr.value.ValueFactories Maven / Gradle / Ivy
/*
* ModeShape (http://www.modeshape.org)
* See the COPYRIGHT.txt file distributed with this work for information
* regarding copyright ownership. Some portions may be licensed
* to Red Hat, Inc. under one or more contributor license agreements.
* See the AUTHORS.txt file in the distribution for a full listing of
* individual contributors.
*
* ModeShape is free software. Unless otherwise indicated, all code in ModeShape
* is licensed to you under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* ModeShape is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.modeshape.jcr.value;
import java.math.BigDecimal;
import org.modeshape.common.annotation.ThreadSafe;
import org.modeshape.jcr.query.model.TypeSystem;
/**
* The set of standard {@link ValueFactory} instances.
*/
@ThreadSafe
public interface ValueFactories extends Iterable>, NameFactory.Holder {
/**
* Get the type system associated with these factories.
*
* @return the type system; never null
*/
TypeSystem getTypeSystem();
/**
* Get the value factory that creates values of the supplied {@link PropertyType type}.
*
* @param type the type for the values
* @return the factory; never null
* @throws IllegalArgumentException if the property type is null
*/
ValueFactory> getValueFactory( PropertyType type );
/**
* Get the value factory that is best able to create values with the most natural type given by the supplied value.
*
* @param prototype the value that should be used to determine the best value factory
* @return the factory; never null
* @throws IllegalArgumentException if the prototype value is null
*/
ValueFactory> getValueFactory( Object prototype );
/**
* Get the value factory for {@link PropertyType#STRING string} properties.
*
* @return the factory; never null
*/
StringFactory getStringFactory();
/**
* Get the value factory for {@link PropertyType#BINARY binary} properties.
*
* @return the factory; never null
*/
BinaryFactory getBinaryFactory();
/**
* Get the value factory for {@link PropertyType#LONG long} properties.
*
* @return the factory; never null
*/
ValueFactory getLongFactory();
/**
* Get the value factory for {@link PropertyType#DOUBLE double} properties.
*
* @return the factory; never null
*/
ValueFactory getDoubleFactory();
/**
* Get the value factory for {@link PropertyType#DECIMAL decimal} properties.
*
* @return the factory; never null
*/
ValueFactory getDecimalFactory();
/**
* Get the value factory for {@link PropertyType#DATE date} properties.
*
* @return the factory; never null
*/
DateTimeFactory getDateFactory();
/**
* Get the value factory for {@link PropertyType#BOOLEAN boolean} properties.
*
* @return the factory; never null
*/
ValueFactory getBooleanFactory();
/**
* Get the value factory for {@link PropertyType#NAME name} properties.
*
* @return the factory; never null
*/
@Override
NameFactory getNameFactory();
/**
* Get the value factory for {@link PropertyType#REFERENCE reference} properties.
*
* @return the factory; never null
*/
ReferenceFactory getReferenceFactory();
/**
* Get the value factory for {@link PropertyType#WEAKREFERENCE reference} properties.
*
* @return the factory; never null
*/
ReferenceFactory getWeakReferenceFactory();
/**
* Get the value factory for {@link PropertyType#SIMPLEREFERENCE reference} properties.
*
* @return the factory; never null
*/
ReferenceFactory getSimpleReferenceFactory();
/**
* Get the value factory for {@link PropertyType#PATH path} properties.
*
* @return the factory; never null
*/
PathFactory getPathFactory();
/**
* Get the value factory for {@link PropertyType#URI URI} properties.
*
* @return the factory; never null
*/
UriFactory getUriFactory();
/**
* Get the value factory for {@link PropertyType#UUID UUID} properties.
*
* @return the factory; never null
*/
UuidFactory getUuidFactory();
/**
* Get the value factory for {@link PropertyType#OBJECT object} properties.
*
* @return the factory; never null
*/
ValueFactory
© 2015 - 2025 Weber Informatics LLC | Privacy Policy