Uses of Class
org.modeshape.graph.property.PropertyType

Packages that use PropertyType
org.modeshape.connector.jcr The JCR connector provides access to a JCR repository instance running in the same process (and accessible via JNDI). 
org.modeshape.connector.store.jpa.model.simple The classes that define the "simple" storage model for the JPA connector. 
org.modeshape.connector.store.jpa.util The classes that define the utility JPA entities that are not part of any storage model. 
org.modeshape.graph.property Nodes in a graph contain properties, and this package defines the interfaces, classes and exceptions for representing and working with properties and their values. 
org.modeshape.graph.request Sometimes its useful to work with a graph using objects that represent individual commands on the graph. 
org.modeshape.graph.request.function The Function interface provides a way to inject custom logic into a connector, where it can be executed close to the actual data and where it can make decisions about what changes should be made to the content. 
org.modeshape.jcr The ModeShape implementation of the JCR API. 
org.modeshape.sequencer.teiid The classes that make up the JCR Compact Node Definition (CND) file sequencer. 
org.modeshape.sequencer.xsd The classes that make up the XML Schema Document sequencer. 
 

Uses of PropertyType in org.modeshape.connector.jcr
 

Methods in org.modeshape.connector.jcr with parameters of type PropertyType
protected  Value JcrRequestProcessor.Workspace.convertToJcrValue(PropertyType graphType, Object graphValue)
           
 

Uses of PropertyType in org.modeshape.connector.store.jpa.model.simple
 

Methods in org.modeshape.connector.store.jpa.model.simple that return PropertyType
 PropertyType LargeValueEntity.getType()
           
 

Methods in org.modeshape.connector.store.jpa.model.simple with parameters of type PropertyType
static LargeValueEntity LargeValueEntity.create(byte[] data, PropertyType type, boolean compressed)
           
 void LargeValueEntity.setType(PropertyType type)
           
 void SimpleJpaRepository.LargeValueSerializer.write(byte[] hash, long length, PropertyType type, Object value)
          
 

Uses of PropertyType in org.modeshape.connector.store.jpa.util
 

Methods in org.modeshape.connector.store.jpa.util with parameters of type PropertyType
 void Serializer.LargeValues.write(byte[] hash, long length, PropertyType type, Object value)
           
 void Serializer.NoLargeValues.write(byte[] hash, long length, PropertyType type, Object value)
           
 

Uses of PropertyType in org.modeshape.graph.property
 

Fields in org.modeshape.graph.property declared as PropertyType
protected  PropertyType ValueTypeSystem.Factory.type
           
 

Methods in org.modeshape.graph.property that return PropertyType
static PropertyType PropertyType.discoverType(Class<?> clazz)
          Discover the most appropriate PropertyType whose values can be assigned to variables or parameters of the supplied type.
static PropertyType PropertyType.discoverType(Object value)
           
 PropertyType ValueFactory.getPropertyType()
          Get the type of values created by this factory.
 PropertyType ValueFormatException.getTargetType()
          Get the PropertyType to which the value was being converted.
static PropertyType PropertyType.valueFor(String typeNameInAnyCase)
           
static PropertyType PropertyType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PropertyType[] PropertyType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.modeshape.graph.property that return types with arguments of type PropertyType
static Iterator<PropertyType> PropertyType.iterator()
          Return an iterator over all the property type enumeration literals.
 

Methods in org.modeshape.graph.property with parameters of type PropertyType
 Property PropertyFactory.create(Name name, PropertyType desiredType, Iterable<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, PropertyType desiredType, Iterator<?> values)
          Create a property with the supplied name and values
 Property PropertyFactory.create(Name name, PropertyType desiredType, Object... values)
          Create a property with the supplied name and values
 ValueFactory<?> ValueFactories.getValueFactory(PropertyType type)
          Get the value factory that creates values of the supplied type.
 

Constructors in org.modeshape.graph.property with parameters of type PropertyType
ValueFormatException(Object value, PropertyType targetType)
           
ValueFormatException(Object value, PropertyType targetType, String message)
           
ValueFormatException(Object value, PropertyType targetType, String message, Throwable cause)
           
ValueFormatException(Object value, PropertyType targetType, Throwable cause)
           
 

Uses of PropertyType in org.modeshape.graph.request
 

Methods in org.modeshape.graph.request with parameters of type PropertyType
protected
<T> T
FunctionRequest.convert(String name, PropertyType type, T defaultValue, Map<String,Serializable> values, ExecutionContext context)
           
<T> T
FunctionRequest.input(String name, PropertyType type, T defaultValue, ExecutionContext context)
          Get the value for the named input to this function.
<T> T
FunctionRequest.output(String name, PropertyType type, T defaultValue, ExecutionContext context)
          Get the value for the named output to this function.
 

Uses of PropertyType in org.modeshape.graph.request.function
 

Methods in org.modeshape.graph.request.function with parameters of type PropertyType
<T> T
FunctionContext.input(String name, PropertyType type, T defaultValue)
          Get the value for the named input to this function.
<T> T
FunctionContext.output(String name, PropertyType type, T defaultValue)
          Get the value for the named output to this function.
 

Uses of PropertyType in org.modeshape.jcr
 

Methods in org.modeshape.jcr that return PropertyType
static PropertyType PropertyTypeUtil.dnaPropertyTypeFor(int jcrPropertyType)
          Compute the ModeShape PropertyType for the given JCR PropertyType value.
 

Methods in org.modeshape.jcr with parameters of type PropertyType
static int PropertyTypeUtil.jcrPropertyTypeFor(PropertyType dnaPropertyType)
          Compute the ModeShape PropertyType for the given JCR PropertyType value.
 

Uses of PropertyType in org.modeshape.sequencer.teiid
 

Methods in org.modeshape.sequencer.teiid with parameters of type PropertyType
protected  Property XmiGraphReader.property(Name name, PropertyType type, Object... values)
           
 

Uses of PropertyType in org.modeshape.sequencer.xsd
 

Methods in org.modeshape.sequencer.xsd with parameters of type PropertyType
protected
<Facet extends org.eclipse.xsd.XSDFacet>
void
XsdReader.process(Iterable<Facet> facets, Path path, Name propertyName, PropertyType type)
           
protected  void XsdReader.process(org.eclipse.xsd.XSDFacet facet, Path path, Name propertyName, PropertyType type)
           
 



Copyright © 2008-2011 JBoss, a division of Red Hat. All Rights Reserved.