Class AttributeValue
- Object
-
- AttributeValue
-
- All Implemented Interfaces:
Serializable
public class AttributeValue extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AttributeValue()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
static AttributeValue
from(String value)
static AttributeValue
from(List<String> values)
String
getValue()
List<String>
getValues()
int
hashCode()
void
setValue(String value)
void
setValues(List<String> values)
String
toString()
-
-
-
Method Detail
-
from
public static AttributeValue from(String value)
-
from
public static AttributeValue from(List<String> values)
-
getValue
public String getValue()
-
getValues
public List<String> getValues()
-
setValue
public void setValue(String value)
-
setValues
public void setValues(List<String> values)
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-