public class Tag extends Object implements Serializable, Cloneable
Information about a tag.
| Constructor and Description |
|---|
Tag() |
| Modifier and Type | Method and Description |
|---|---|
Tag |
clone() |
boolean |
equals(Object obj) |
String |
getKey()
The key of the tag.
|
String |
getValue()
The value of the tag.
|
int |
hashCode() |
void |
setKey(String key)
The key of the tag.
|
void |
setValue(String value)
The value of the tag.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
Tag |
withKey(String key)
The key of the tag.
|
Tag |
withValue(String value)
The value of the tag.
|
public String getKey()
Constraints:
Length: 1 - 128
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
public void setKey(String key)
Constraints:
Length: 1 - 128
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
key - The key of the tag.public Tag withKey(String key)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 128
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
key - The key of the tag.public String getValue()
Constraints:
Length: 0 - 256
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
public void setValue(String value)
Constraints:
Length: 0 - 256
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
value - The value of the tag.public Tag withValue(String value)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 0 - 256
Pattern: ^([\p{L}\p{Z}\p{N}_.:/=+\-@]*)$
value - The value of the tag.public String toString()
toString in class ObjectObject.toString()Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.