Class ActionParameter<T>

    • Constructor Detail

      • ActionParameter

        protected ActionParameter​(String name)
        Constructs a new ActionParameter.
        Parameters:
        name - parameter name (the key)
    • Method Detail

      • getName

        public String getName()
        Get the name of this action parameter. The name is used as a key, to look up values for the parameter.
        Returns:
        the name of this action parameter
      • getType

        public abstract Class<TgetType()
        Get the value type of this action parameter.
        Returns:
        the value type of this action parameter
      • writeToString

        public abstract String writeToString​(T value)
        Convert a given value into a string (serialization).
        Parameters:
        value - the value
        Returns:
        a string representation of the value
      • readFromString

        public abstract T readFromString​(String s)
        Create a value from the given string representation (deserialization).
        Parameters:
        s - the string representation of the value
        Returns:
        the corresponding value object