Class Member
java.lang.Object
com.espertech.esper.common.client.json.minimaljson.Member
Represents a member of a JSON object, a pair of a name and a value.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
Member
Ctor.- Parameters:
name
- namevalue
- value
-
-
Method Details
-
getName
Returns the name of this member.- Returns:
- the name of this member, never
null
-
getValue
Returns the value of this member.- Returns:
- the value of this member, never
null
-
hashCode
public int hashCode() -
equals
Indicates whether a given object is "equal to" this JsonObject. An object is considered equal if it is also aJsonObject
and both objects contain the same members in the same order.If two JsonObjects are equal, they will also produce the same JSON output.
-