1. Project Clover database Sun May 19 2019 23:30:46 BRT
  2. Package net.technearts

File Converter.java

 

Code metrics

0
0
0
1
8
5
0
-
-
0
-

Classes

Class Line # Actions
Converter 6 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package net.technearts;
2   
3    import java.util.function.Function;
4   
5    @FunctionalInterface
 
6    public interface Converter<T> extends Function<String, T> {
7   
8    }