Class URIParameter

java.lang.Object
de.muehlencord.shared.configuration.Parameter<URI>
de.muehlencord.shared.configuration.URIParameter

public class URIParameter extends Parameter<URI>
A URI parameter
Author:
Joern Muehlencord (joern@muehlencord.de)
  • Constructor Details

    • URIParameter

      public URIParameter(String name)
      creates a new mandatory parameter object using default string converter
      Parameters:
      name - the name of the parameter
    • URIParameter

      public URIParameter(String name, StringConverter<URI> converter)
      creates a new mandatory parameter object
      Parameters:
      name - the name of the parameter
      converter - the converter object to convert the value of the parameter to string and vice versa
    • URIParameter

      public URIParameter(String name, boolean mandatory)
      creates a new parameter object using default string converter
      Parameters:
      name - the name of the parameter
      mandatory - detremines if this is a mandatory parameter or not
    • URIParameter

      public URIParameter(String name, StringConverter<URI> converter, boolean mandatory)
      creates a new parameter object
      Parameters:
      name - the name of the parameter
      converter - the converter object to convert the value of the parameter to string and vice versa
      mandatory - detremines if this is a mandatory parameter or not