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

com.softicar.platform.common.string.parameter.StringParameter Maven / Gradle / Ivy

Go to download

The SoftiCAR Platform is a lightweight, Java-based library to create interactive business web applications.

There is a newer version: 50.0.0
Show newest version
package com.softicar.platform.common.string.parameter;

/**
 * Implementation of a string parameter.
 * 

* This implementation will not throw {@link InvalidParameterValueException} * because any string value is considered to be valid. * * @author Oliver Richers */ public class StringParameter extends AbstractParameter { public StringParameter(String name, String valueString) { super(name, valueString); } @Override protected String parseValueString(String valueString) { return valueString; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy