Interface MetadataBinder<D extends Compiled>
-
- Type Parameters:
D- Собранные метаданные
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface MetadataBinder<D extends Compiled>
Связывание метаданных с данными
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Dbind(D compiled, BindProcessor p)Связать метаданные с даннымиdefault booleanmatches(D compiled, BindProcessor p)Подходит ли метаданная для связывания?
-
-
-
Method Detail
-
bind
D bind(D compiled, BindProcessor p)
Связать метаданные с данными- Parameters:
compiled- Собранные метаданныеp- Процессор связывания- Returns:
- Связанные метаданные с данными
-
matches
default boolean matches(D compiled, BindProcessor p)
Подходит ли метаданная для связывания?- Parameters:
compiled- Собранная метаданнаяp- Процессор связывания- Returns:
- true - подходит, false - не подходит
-
-