Package space.arim.dazzleconf.serialiser
Interface FlexibleTypeMapEntryFunction<K,V>
- Type Parameters:
K- the type of the key resultV- the type of the value result
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface which computes a
Map.Entry<K, V>> from a FlexibleType
key and value- Author:
- A248
-
Method Summary
Modifier and TypeMethodDescriptiongetResult(FlexibleType flexibleKey, FlexibleType flexibleValue) Gets a result from two flexible types
-
Method Details
-
getResult
Map.Entry<K,V> getResult(FlexibleType flexibleKey, FlexibleType flexibleValue) throws BadValueException Gets a result from two flexible types- Parameters:
flexibleKey- the flexible type keyflexibleValue- the flexible type value- Returns:
- the map entry
- Throws:
BadValueException- if thrown fromFlexibleType's methods
-