View Javadoc
1   /*
2    * CSVeed (https://github.com/42BV/CSVeed)
3    *
4    * Copyright 2013-2023 CSVeed.
5    *
6    * All rights reserved. This program and the accompanying materials
7    * are made available under the terms of The Apache Software License,
8    * Version 2.0 which accompanies this distribution, and is available at
9    * https://www.apache.org/licenses/LICENSE-2.0.txt
10   */
11  package org.csveed.bean.conversion;
12  
13  /**
14   * The Class EasyAbstractConverter.
15   *
16   * @param <K>
17   *            the key type
18   */
19  public abstract class EasyAbstractConverter<K> extends AbstractConverter<K> {
20  
21      /**
22       * Instantiates a new easy abstract converter.
23       *
24       * @param clazz
25       *            the clazz
26       */
27      protected EasyAbstractConverter(Class<K> clazz) {
28          super(clazz);
29      }
30  
31      @Override
32      public String toString(K value) throws Exception {
33          return null;
34      }
35  
36  }