Package io.kojan.xml
Interface Getter<OuterType,NestedType>
-
- Type Parameters:
OuterType
- bean classNestedType
- type of property value
- 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 Getter<OuterType,NestedType>
Bean property getter.- Author:
- Mikolaj Izdebski
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NestedType
get(OuterType object)
Returns the value of bean property.
-
-
-
Method Detail
-
get
NestedType get(OuterType object)
Returns the value of bean property.- Parameters:
object
- the bean whose property should be returned- Returns:
- bean property value
-
-