package pm.j4.petroleum.modules.base; /** * The type String writable. * * @param the type parameter */ public class StringWritable> { /** * The Value. */ public T value; /** * Gets type. * * @return the type */ public String getType() { return ""; } /** * Gets value. * * @return the value */ public T getValue() { return this.value; } /** * Gets string value. * * @return the string value */ public String getStringValue() { return ""; } /** * To string value. * * @param value the value */ public void toStringValue(String value) { } }