PageRenderTime 272ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/connexion-util/src/info/reflectionsofmind/connexion/util/convert/IDecoder.java

https://bitbucket.org/fixpoint/connexion
Java | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | 53e285ccfae1118e1440bd4be5660121 MD5 | raw file
  1. package info.reflectionsofmind.connexion.util.convert;
  2. public interface IDecoder<T>
  3. {
  4. boolean accepts(String string);
  5. T decode(String string);
  6. }