Modules
Encoder
- Path
- pkg15modules/spi-demo/src/main/java/pkg15modules/spi/Encoder.java
- Package
- pkg15modules
- Study order
- 0
- Run
- Read this file. It has no standalone main method.
There is no in-browser runner. This is the file from the curriculum, unchanged.
1package pkg15modules.spi;2 3public interface Encoder {4 String encode(String input);5 String name();6}