Interface IParameter


  • public interface IParameter
    A context parameter.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String DEFAULT_NAME
      Parameter default name.
      static java.lang.String[] PROPERTYNAMES
      Names of the properties.
      static java.lang.Class[] PROPERTYTYPES
      Types of the properties.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Get the name.
      java.lang.String getType()
      Get the type.
      java.lang.String getValue()
      Get the value.
      boolean isSet()
      Get the set.
      void setName​(java.lang.String name)
      Set the name.
      void setSet​(boolean set)
      Set the set.
      void setType​(java.lang.String type)
      Set the type.
      void setValue​(java.lang.String value)
      Set the value.
    • Field Detail

      • DEFAULT_NAME

        static final java.lang.String DEFAULT_NAME
        Parameter default name.
        See Also:
        Constant Field Values
      • PROPERTYNAMES

        static final java.lang.String[] PROPERTYNAMES
        Names of the properties.
      • PROPERTYTYPES

        static final java.lang.Class[] PROPERTYTYPES
        Types of the properties.
    • Method Detail

      • getName

        java.lang.String getName()
        Get the name.
        Returns:
        The name.
      • setName

        void setName​(java.lang.String name)
        Set the name.
        Parameters:
        name - The name to set.
      • getType

        java.lang.String getType()
        Get the type.
        Returns:
        The type.
      • setType

        void setType​(java.lang.String type)
        Set the type.
        Parameters:
        type - The type to set.
      • getValue

        java.lang.String getValue()
        Get the value.
        Returns:
        The value.
      • setValue

        void setValue​(java.lang.String value)
        Set the value.
        Parameters:
        value - The value to set.
      • isSet

        boolean isSet()
        Get the set.
        Returns:
        The set.
      • setSet

        void setSet​(boolean set)
        Set the set.
        Parameters:
        set - The set to set.