Interface RecordPointerFactory
-
- 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 RecordPointerFactory
Adapted representation of jsonpointer specification for record modelling.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordPointer
apply(String pointer)
Note that you can reuse this instance safely.
-
-
-
Method Detail
-
apply
RecordPointer apply(String pointer)
Note that you can reuse this instance safely.- Parameters:
pointer
- the pointer (same as jsonpointer rule) to use to build the record pointer.- Returns:
- a record pointer corresponding to the parameter value.
-
-