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.basic The classes that define the "basic" storage model for the JPA connector. 
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. 
 

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.basic
 

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

Methods in org.modeshape.connector.store.jpa.model.basic with parameters of type PropertyType
 void LargeValueEntity.setType(PropertyType type)
           
 void BasicRequestProcessor.LargeValueSerializer.write(byte[] hash, long length, PropertyType type, Object value)
          
 void BasicRequestProcessor.RecordingLargeValues.write(byte[] hash, long length, PropertyType type, Object value)
           
 void BasicRequestProcessor.SkippedLargeValues.write(byte[] hash, long length, PropertyType type, Object value)
           
 

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.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)
           
 



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