public class ListTagsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
The result of a ListTags
operation. Contains tags for all
requested Elasticsearch domains.
Modifier and Type | Field and Description |
---|---|
private java.util.List<Tag> |
tagList
List of
Tag for the requested Elasticsearch domain. |
Constructor and Description |
---|
ListTagsResult() |
Modifier and Type | Method and Description |
---|---|
ListTagsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<Tag> |
getTagList()
List of
Tag for the requested Elasticsearch domain. |
int |
hashCode() |
void |
setTagList(java.util.Collection<Tag> tagList)
List of
Tag for the requested Elasticsearch domain. |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTagsResult |
withTagList(java.util.Collection<Tag> tagList)
List of
Tag for the requested Elasticsearch domain. |
ListTagsResult |
withTagList(Tag... tagList)
List of
Tag for the requested Elasticsearch domain. |
private java.util.List<Tag> tagList
List of Tag
for the requested Elasticsearch domain.
public java.util.List<Tag> getTagList()
List of Tag
for the requested Elasticsearch domain.
Tag
for the requested Elasticsearch domain.public void setTagList(java.util.Collection<Tag> tagList)
List of Tag
for the requested Elasticsearch domain.
tagList
- List of Tag
for the requested Elasticsearch domain.public ListTagsResult withTagList(Tag... tagList)
List of Tag
for the requested Elasticsearch domain.
NOTE: This method appends the values to the existing list (if
any). Use setTagList(java.util.Collection)
or
withTagList(java.util.Collection)
if you want to override the
existing values.
tagList
- List of Tag
for the requested Elasticsearch domain.public ListTagsResult withTagList(java.util.Collection<Tag> tagList)
List of Tag
for the requested Elasticsearch domain.
tagList
- List of Tag
for the requested Elasticsearch domain.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListTagsResult clone()
clone
in class java.lang.Object