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 |
---|---|
EntityPropertySetter<TEntity> |
EntitySchemaProperty.getSetter()
Gets a callback to set the value of the property.
|
static <TEntity> EntityPropertySetter<TEntity> |
EntityPropertySetter.of(EntityPropertySetter.Function<TEntity> f)
Create a delegate for the given interface.
|
static <TEntity> EntityPropertySetter<TEntity> |
EntityPropertySetter.of(EntityPropertySetter.Function<TEntity> f,
Class<?> targetClass,
String methodName,
Class<?>... methodParameterClasses)
Create a delegate for the given interface.
|
static <TEntity> EntityPropertySetter<TEntity> |
EntityPropertySetter.of(EntityPropertySetter.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.
|