Package | Description |
---|---|
agi.foundation.tracking |
Contains types for acquiring, analyzing and archiving dynamic data, such as those found in real-time feeds or simulation environments.
|
Modifier and Type | Method and Description |
---|---|
MarkerCallback<TEntity> |
MarkerVisualizer.getCallback()
Gets the
MarkerCallback used to determine the marker. |
static <TEntity> MarkerCallback<TEntity> |
MarkerCallback.of(MarkerCallback.Function<TEntity> f)
Create a delegate for the given interface.
|
static <TEntity> MarkerCallback<TEntity> |
MarkerCallback.of(MarkerCallback.Function<TEntity> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <TEntity> MarkerCallback<TEntity> |
MarkerCallback.of(MarkerCallback.Function<TEntity> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Modifier and Type | Method and Description |
---|---|
void |
MarkerVisualizer.setCallback(MarkerCallback<TEntity> value)
Sets the
MarkerCallback used to determine the marker. |
Constructor and Description |
---|
MarkerVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
MarkerCallback<TEntity> callback)
Creates a new instance with the provided
EntitySet and MarkerCallback . |
MarkerVisualizer(TypeLiteral<TEntity> typeLiteralTEntity,
EntitySet<TEntity> entities,
MarkerCallback<TEntity> callback,
SetHint setHint)
|