Interface IParameterSet

All Superinterfaces:
IElement
All Known Implementing Classes:
RParameterElement.RParameterSet

public interface IParameterSet extends IElement
Interface for all parameter sets.
  • Method Details

    • addValue

      void addValue(Object value)
      Add a value to a parameter set.
      Parameters:
      value - The new value.
    • removeValue

      void removeValue(Object value)
      Remove a value to a parameter set.
      Parameters:
      value - The new value.
    • addValues

      void addValues(Object[] values)
      Add values to a parameter set.
    • removeValues

      void removeValues()
      Remove all values from a parameter set.
    • containsValue

      boolean containsValue(Object value)
      Test if a value is contained in a parameter.
      Parameters:
      value - The value to test.
      Returns:
      True, if value is contained.
    • getValues

      Object[] getValues()
      Get the values of a parameterset.
      Returns:
      The values.
    • size

      int size()
      Get the number of values currently contained in this set.
      Returns:
      The values count.
    • getName

      String getName()
      Get the name.
      Returns:
      The name.