Interface AttributeConverter<T,F>

Type Parameters:
T - the class of the entity attribute
F - the class of the associated graph property
All Known Implementing Classes:
ByteArrayBase64Converter, ByteArrayWrapperBase64Converter, Convert.Unset, ConverterBasedCollectionConverter, DateArrayStringConverter, DateCollectionStringConverter, DateLongConverter, DateStringConverter, EnumArrayStringConverter, EnumCollectionStringConverter, EnumStringConverter, InstantLongConverter, InstantStringConverter, LocalDateStringConverter, LocalDateTimeStringConverter, NoOpByteArrayConverter, NoOpWrappedByteArrayConverter, NumberArrayStringConverter, NumberCollectionStringConverter, NumberStringConverter, OffsettDateTimeStringConverter, ProxyAttributeConverter, UuidStringConverter

public interface AttributeConverter<T,F>
based on JPA AttributeConverter, but with methods appropriate for property graphs, rather than column stores/RDBMS.
Author:
Vince Bickers
  • Method Details

    • toGraphProperty

      F toGraphProperty(T value)
    • toEntityAttribute

      T toEntityAttribute(F value)