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

Packages that use PropertyType
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. 
org.modeshape.graph.property.basic A set of basic implementations of the various interfaces defined in org.modeshape.graph.property
 

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)
           
 

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)
           
 

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)
           
 

Uses of PropertyType in org.modeshape.graph.property
 

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)
           
 

Uses of PropertyType in org.modeshape.graph.property.basic
 

Methods in org.modeshape.graph.property.basic that return PropertyType
 PropertyType AbstractValueFactory.getPropertyType()
          Get the type of values created by this factory.
 

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



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