Package org.pkl.core.runtime
Interface VmObjectLike.MemberValueConsumer
-
- Enclosing class:
- VmObjectLike
- 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 static interface VmObjectLike.MemberValueConsumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanaccept(java.lang.Object key, ObjectMember member, @Nullable java.lang.Object value)Returns true ifVmObjectLike.iterateMemberValues(org.pkl.core.runtime.VmObjectLike.MemberValueConsumer)should continue calling this method for the remaining members, and false otherwise.
-
-
-
Method Detail
-
accept
boolean accept(java.lang.Object key, ObjectMember member, @Nullable java.lang.Object value)Returns true ifVmObjectLike.iterateMemberValues(org.pkl.core.runtime.VmObjectLike.MemberValueConsumer)should continue calling this method for the remaining members, and false otherwise.
-
-