Uses of Interface
science.aist.neo4j.reflective.FieldConverter
-
Packages that use FieldConverter Package Description science.aist.neo4j.annotations science.aist.neo4j.reflective science.aist.neo4j.reflective.converter science.aist.neo4j.reflective.converter.arrayprimitive -
-
Uses of FieldConverter in science.aist.neo4j.annotations
Fields in science.aist.neo4j.annotations with type parameters of type FieldConverter Modifier and Type Field Description static Class<? extends FieldConverter>
Converter. converter
Converter to be loaded for field conversionMethods in science.aist.neo4j.annotations that return types with arguments of type FieldConverter Modifier and Type Method Description Class<? extends FieldConverter>
converter()
-
Uses of FieldConverter in science.aist.neo4j.reflective
Fields in science.aist.neo4j.reflective declared as FieldConverter Modifier and Type Field Description protected FieldConverter
FieldInformation. converter
-
Uses of FieldConverter in science.aist.neo4j.reflective.converter
Subinterfaces of FieldConverter in science.aist.neo4j.reflective.converter Modifier and Type Interface Description interface
ArrayConverter<D,T>
interface
CollectionConverter<V>
Converter that handles listsinterface
MapConverter<K,V>
Converter that handles arraysClasses in science.aist.neo4j.reflective.converter that implement FieldConverter Modifier and Type Class Description class
ArrayConverterImpl<T>
Converter that handles arrays.class
ClassConverter
Converter for int values, as they are implicitly cast to Long by Neo4Jclass
CollectionConverterImpl<T>
Default implementation of list converterclass
IntConverter
Converter for int values, as they are implicitly cast to Long by Neo4Jclass
MapConverterImpl<K,V>
Converter that handles arraysMethods in science.aist.neo4j.reflective.converter that return FieldConverter Modifier and Type Method Description static FieldConverter
ConverterProvider. getConverter(Class fieldClass, Type type, Map<Class,Class<? extends FieldConverter>> converterOverrides)
Returns converter for classMethods in science.aist.neo4j.reflective.converter that return types with arguments of type FieldConverter Modifier and Type Method Description static Map<Class,Class<? extends FieldConverter>>
ConverterProvider. init(Map<Class,Class<? extends FieldConverter>> converterMap)
Init function provides converters.static Map<Class,Class<? extends FieldConverter>>
ConverterProvider. init(Map<Class,Class<? extends FieldConverter>> converterMap, boolean defaults)
Init function provides converters.Methods in science.aist.neo4j.reflective.converter with parameters of type FieldConverter Modifier and Type Method Description void
MapConverter. setKeyConverter(FieldConverter<String,K> keyConverter)
Injects converter to convert a string to a map's key classvoid
MapConverterImpl. setKeyConverter(FieldConverter<String,K> keyConverter)
void
ArrayConverter. setTypeConverter(FieldConverter<String,T> typeConverter)
Injects converter to transform a string to a typevoid
ArrayConverterImpl. setTypeConverter(FieldConverter<String,T> typeConverter)
void
CollectionConverter. setTypeConverter(FieldConverter<String,V> valueConverter)
Converter for the type the list containsvoid
CollectionConverterImpl. setTypeConverter(FieldConverter<String,T> typeConverter)
void
MapConverter. setValueConverter(FieldConverter<String,V> valueConverter)
Injects converter to convert a string to a map's value classvoid
MapConverterImpl. setValueConverter(FieldConverter<String,V> valueConverter)
Method parameters in science.aist.neo4j.reflective.converter with type arguments of type FieldConverter Modifier and Type Method Description static FieldConverter
ConverterProvider. getConverter(Class fieldClass, Type type, Map<Class,Class<? extends FieldConverter>> converterOverrides)
Returns converter for classstatic Map<Class,Class<? extends FieldConverter>>
ConverterProvider. init(Map<Class,Class<? extends FieldConverter>> converterMap)
Init function provides converters.static Map<Class,Class<? extends FieldConverter>>
ConverterProvider. init(Map<Class,Class<? extends FieldConverter>> converterMap, boolean defaults)
Init function provides converters. -
Uses of FieldConverter in science.aist.neo4j.reflective.converter.arrayprimitive
Classes in science.aist.neo4j.reflective.converter.arrayprimitive that implement FieldConverter Modifier and Type Class Description class
BooleanArrayConverterImpl
Converter that works on simple datatype array boolean[], which can't be cast to Object[].class
ByteArrayConverterImpl
Converter that works on simple datatype array byte[], which can't be cast to Object[].class
CharArrayConverterImpl
Converter that works on simple datatype array char[], which can't be cast to Object[].class
DoubleArrayConverterImpl
Converter that works on simple datatype array double[], which can't be cast to Object[].class
FloatArrayConverterImpl
Converter that works on simple datatype array float[], which can't be cast to Object[].class
IntArrayConverterImpl
Converter that works on simple datatype array int[], which can't be cast to Object[].class
LongArrayConverterImpl
Converter that works on simple datatype array long[], which can't be cast to Object[].class
ShortArrayConverterImpl
Converter that works on simple datatype array short[], which can't be cast to Object[].
-