Interface VirtualFieldMappingsBuilder
-
- All Known Implementing Classes:
VirtualFieldMappingsBuilderImpl
public interface VirtualFieldMappingsBuilderThis interface allows registeringVirtualFieldclass pairs.This interface should not be implemented by the javaagent extension developer - the javaagent will provide the implementation of all transformations described here.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description VirtualFieldMappingsBuilderregister(String typeName, String fieldTypeName)Register the association between thetypeNameand thefieldTypeName.
-
-
-
Method Detail
-
register
VirtualFieldMappingsBuilder register(String typeName, String fieldTypeName)
Register the association between thetypeNameand thefieldTypeName. Class pairs registered using this method will be available asVirtualFields in the runtime; obtainable by callingVirtualField.find(Class, Class).- Parameters:
typeName- The name of the type that will contain the virtual field of type namedfieldTypeName.fieldTypeName- The name of the field type that will be added totype.- Returns:
this.- See Also:
VirtualField
-
-