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 |
---|---|
EntityPropertyGetter<TEntity> |
EntitySchemaProperty.getGetter()
Gets a callback to get the value of the property.
|
static <TEntity> EntityPropertyGetter<TEntity> |
EntityPropertyGetter.of(EntityPropertyGetter.Function<TEntity> f)
Create a delegate for the given interface.
|
static <TEntity> EntityPropertyGetter<TEntity> |
EntityPropertyGetter.of(EntityPropertyGetter.Function<TEntity> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <TEntity> EntityPropertyGetter<TEntity> |
EntityPropertyGetter.of(EntityPropertyGetter.Function<TEntity> f,
Object targetObject,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
Constructor and Description |
---|
EntitySchemaProperty(String name,
Class<?> type,
EntityPropertyGetter<TEntity> getter,
EntityPropertySetter<TEntity> setter)
Initializes a new instance.
|