Package com.flower.docs.domain.common
Class ResultField
- java.lang.Object
-
- com.flower.docs.domain.common.ResultField
-
- All Implemented Interfaces:
java.io.Serializable
public class ResultField extends java.lang.Object implements java.io.Serializable<p>Java class for ResultField complex type. <p>The following schema fragment specifies the expected content contained within this class. <pre> <complexType name="ResultField"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/> </sequence> </restriction> </complexContent> </complexType> </pre>- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResultField()Default no-arg constructor abcResultField(java.lang.String name, java.lang.String value)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object other)java.lang.StringgetName()Gets the value of the name property.java.lang.StringgetValue()Gets the value of the value property.inthashCode()voidsetName(java.lang.String value)Sets the value of the name property.voidsetValue(java.lang.String value)Sets the value of the value property.java.lang.StringtoString()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(java.lang.String value)
Sets the value of the name property.- Parameters:
value- allowed object isString
-
getValue
public java.lang.String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
public void setValue(java.lang.String value)
Sets the value of the value property.- Parameters:
value- allowed object isString
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equalsin classjava.lang.Object
-
-