All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bbn.bue.common.converters.StringToString Maven / Gradle / Ivy

There is a newer version: 4.1.2
Show newest version
package com.bbn.bue.common.converters;

import static com.google.common.base.Preconditions.checkNotNull;

public class StringToString implements StringConverter {

  public StringToString() {
  }

  public Class getValueClass() {
    return String.class;
  }

  @Override
  public String decode(final String s) {
    return checkNotNull(s);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy