-
- All Superinterfaces:
ReadablePath
public interface WritablePath extends ReadablePath
- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidpath(String path)This method sets theReadablePath.path()of this object.voidpath(Supplier<String> pathSupplier)This method sets theReadablePath.path()of this object as dynamic reference to the givenSupplier.-
Methods inherited from interface io.github.mmm.value.ReadablePath
path
-
-
-
-
Method Detail
-
path
void path(String path)
This method sets theReadablePath.path()of this object. It is not a regular setter to avoid conflicts with custom properties of beans implementing this interface.- Parameters:
path- new value ofReadablePath.path().
-
path
void path(Supplier<String> pathSupplier)
This method sets theReadablePath.path()of this object as dynamic reference to the givenSupplier. It is not a regular setter to avoid conflicts with custom properties of beans implementing this interface.- Parameters:
pathSupplier- theSupplierthatprovidestheReadablePath.path().
-
-