Uses of Interface
org.jrdf.graph.datatype.ValueCreator

Packages that use ValueCreator
org.jrdf.graph.datatype   
 

Uses of ValueCreator in org.jrdf.graph.datatype
 

Subinterfaces of ValueCreator in org.jrdf.graph.datatype
 interface DatatypeValue
          Datatypes are values and create themselves.
 interface XSDDecimal
          All of the data types derived from XSD decimal to be treated in the same way.
 

Classes in org.jrdf.graph.datatype that implement ValueCreator
 class AnyURIValue
           
 class BooleanValue
           
 class ByteValue
           
 class CalendarValue
           
 class DateTimeValue
           
 class DecimalValue
           
 class DoubleValue
           
 class DurationValue
           
 class FloatValue
           
 class GMonthCalendarValue
           
 class IntegerValue
           
 class IntValue
           
 class LongValue
           
 class NonNegativeIntegerValue
           
 class NonPositiveIntegerValue
           
 class QNameValue
           
 class ShortValue
           
 class StringValue
           
 

Methods in org.jrdf.graph.datatype with parameters of type ValueCreator
 void DatatypeFactoryImpl.addSecondaryValueCreator(Class<?> aClass, URI datatypeURI, ValueCreator creator)
           
 void DatatypeFactory.addSecondaryValueCreator(Class<?> aClass, URI datatypeURI, ValueCreator creator)
          If you want to bind more than one Java type to a given URI use this for alternative bindings.
 void DatatypeFactoryImpl.addValueCreator(URI datatypeURI, Class<?> aClass, ValueCreator creator)
           
 void DatatypeFactory.addValueCreator(URI datatypeURI, Class<?> aClass, ValueCreator creator)
          Add a value create for a given URI.
 void DatatypeFactoryImpl.addValueCreator(URI datatypeURI, ValueCreator creator)
           
 void DatatypeFactory.addValueCreator(URI datatypeURI, ValueCreator creator)
          Add a value create for a given URI.
 

Constructor parameters in org.jrdf.graph.datatype with type arguments of type ValueCreator
DatatypeFactoryImpl(Map<URI,ValueCreator> newCreatorMap)