Class RequestParameter


  • public class RequestParameter
    extends Object
    Request parameter holder

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • RequestParameter

        public RequestParameter​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • setName

        @Deprecated
        public void setName​(String name)
        Deprecated.
        Set parameter name
        Parameters:
        name -
      • setValue

        @Deprecated
        public void setValue​(Object value)
        Deprecated.
        Set value
        Parameters:
        value -
      • getName

        @Deprecated
        public String getName()
        Deprecated.
        Get parameter name
        Returns:
      • getObjectKeys

        @Deprecated
        public List<String> getObjectKeys()
        Deprecated.
        If value is a map of fields, it returns keys of map, otherwise it returns null
        Returns:
      • getObjectValue

        @Deprecated
        public RequestParameter getObjectValue​(String key)
        Deprecated.
        If value is a map of fields, it returns value of field with key provided, otherwise it returns null
        Parameters:
        key -
        Returns:
      • isObject

        @Deprecated
        public boolean isObject()
        Deprecated.
        Returns true if value of RequestParameter is a map of fields
        Returns:
      • isArray

        @Deprecated
        public boolean isArray()
        Deprecated.
        Returns true if value of RequestParameter is an array
        Returns:
      • getString

        @Deprecated
        public String getString()
        Deprecated.
        Returns null if value is not a String, otherwise it returns value
        Returns:
      • isString

        @Deprecated
        public boolean isString()
        Deprecated.
        Returns true if value of RequestParameter is a String instance
        Returns:
      • getInteger

        @Deprecated
        public Integer getInteger()
        Deprecated.
        Returns null if value is not an Integer, otherwise it returns value
        Returns:
      • isInteger

        @Deprecated
        public boolean isInteger()
        Deprecated.
        Returns true if value of RequestParameter is an Integer instance
        Returns:
      • getLong

        @Deprecated
        public Long getLong()
        Deprecated.
        Returns null if value is not a Long, otherwise it returns value
        Returns:
      • isLong

        @Deprecated
        public boolean isLong()
        Deprecated.
        Returns true if value of RequestParameter is a Long instance
        Returns:
      • getFloat

        @Deprecated
        public Float getFloat()
        Deprecated.
        Returns null if value is not a Float, otherwise it returns value
        Returns:
      • isFloat

        @Deprecated
        public boolean isFloat()
        Deprecated.
        Returns true if value of RequestParameter is a Float instance
        Returns:
      • getDouble

        @Deprecated
        public Double getDouble()
        Deprecated.
        Returns null if value is not a Double, otherwise it returns value
        Returns:
      • isDouble

        @Deprecated
        public boolean isDouble()
        Deprecated.
        Returns true if value of RequestParameter is a Double instance
        Returns:
      • getBoolean

        @Deprecated
        public Boolean getBoolean()
        Deprecated.
        Returns null if value is not a Boolean, otherwise it returns value
        Returns:
      • isBoolean

        @Deprecated
        public boolean isBoolean()
        Deprecated.
        Returns true if value of RequestParameter is a Boolean instance
        Returns:
      • getJsonObject

        @Deprecated
        public JsonObject getJsonObject()
        Deprecated.
        Returns null if value is not a JsonObject, otherwise it returns value
        Returns:
      • isJsonObject

        @Deprecated
        public boolean isJsonObject()
        Deprecated.
        Returns true if value of RequestParameter is a JsonObject instance
        Returns:
      • getJsonArray

        @Deprecated
        public JsonArray getJsonArray()
        Deprecated.
        Returns null if value is not a JsonArray, otherwise it returns value
        Returns:
      • isJsonArray

        @Deprecated
        public boolean isJsonArray()
        Deprecated.
        Returns true if value of RequestParameter is a JsonArray instance
        Returns:
      • isNull

        @Deprecated
        public boolean isNull()
        Deprecated.
        Returns true if value is null
        Returns:
      • toJson

        @Deprecated
        public Object toJson()
        Deprecated.
        Converts deeply this RequestParameter in a Json representation
        Returns:
      • merge

        @Deprecated
        public RequestParameter merge​(RequestParameter otherParameter)
        Deprecated.
        Merge this request parameter with another one. Note: the parameter passed by argument has the priority
        Parameters:
        otherParameter -
        Returns: