Interface ITypedParameters

All Superinterfaces:
IParameters, Serializable
All Known Implementing Classes:
TypedParameters

public interface ITypedParameters extends IParameters
Interface to allow objects to expose typed parameters. The parameter keys are not case sensitive.
Since:
7.0
Author:
Jon van Leuven
  • Method Details

    • getTypedParameter

      ITypedParameter getTypedParameter(String key)
      This method will return the value for the specified parameter key. The returned value may be null when either the parameter key was unknown, or when the value for that parameter key was specifically defined as empty. When a null is returned, the hasParameter method may be used to check if the parameter was present (intended null) or unknown.
      Parameters:
      key - The parameter key for which the value is requested.
      Returns:
      The typed value for the specified parameter key.